I need to get the value of a pointer. I have the address of the pointer but i wish to get the information in the pointer's memory case.
I have a lParam parameter and i wish to know what is in it.
Printable View
I need to get the value of a pointer. I have the address of the pointer but i wish to get the information in the pointer's memory case.
I have a lParam parameter and i wish to know what is in it.
If all you want to do is know what's in lParam, then simply use the Print statement.
Code:Debug.Print lParam
if you know to what type of data lparam points to then you can use the CopyMemory Api to retrieve its contents.
reply to
<[email protected]>