Perhaps you guys are fed up with pointer-question just now,
but I need to ask.
I am using "private messages" &H761A to &H761F to communicate
messages from my Runtime-DLL.
LParam is a pointer to a sting (the message)
Using a Dialog callback
Thanks for your help
-------------
Fred
mailto:[email protected][email protected]</A>
http://www.oxenby.se
[This message has been edited by Fred Oxenby (edited March 03, 2000).]
but I need to ask.
I am using "private messages" &H761A to &H761F to communicate
messages from my Runtime-DLL.
LParam is a pointer to a sting (the message)
Using a Dialog callback
Code:
Callback Function DlgCallBack Local Msg As String Ptr Local MsgPtr As Dword MsgPtr = CbLparam If CbMsg = &H761A Then Msg = VarPtr(MsgPtr) Why can't I just assign it like this: Msg = VarPtr(CBLParam)
-------------
Fred
mailto:[email protected][email protected]</A>
http://www.oxenby.se
[This message has been edited by Fred Oxenby (edited March 03, 2000).]
Comment