D
Daniel Halan
Hello,
I want to send a SendMessage(hwnd,...) to an another application containing
eighter a "String" or a PIDL... I know that the pointer lives in its own
process so the other app will have problems reading it. How was it done to
create the String / PIDL in a common memoryspace?
What I want to do is:
string szFolder = @"C:\temp\";
hWinApi.SendMessage(hwnd,hWinApi.BFFM_SETSELECTIONA,new IntPtr(1),szFolder);
Where hwnd is an Handle to an other application caught by FindWindow().
// Daniel
I want to send a SendMessage(hwnd,...) to an another application containing
eighter a "String" or a PIDL... I know that the pointer lives in its own
process so the other app will have problems reading it. How was it done to
create the String / PIDL in a common memoryspace?
What I want to do is:
string szFolder = @"C:\temp\";
hWinApi.SendMessage(hwnd,hWinApi.BFFM_SETSELECTIONA,new IntPtr(1),szFolder);
Where hwnd is an Handle to an other application caught by FindWindow().
// Daniel