Newsgroups : Borland : borland.public.delphi.nativeapi.win32 : 2005 Apr : Getting a string to return
| Subject: | Getting a string to return |
| Posted by: | "Tom Peters" (tom_vip..@msn.com) |
| Date: | Mon, 4 Apr 2005 03:54:20 |
I've got two separate applications. I need to send a message
sendmessage(secondappshandle,WM_MYMESSAGE,0);
to the second application, have it sit there until the second app responds,
by return a string of values (item1,item2, item3)
Anyone have code for that.
So, I need something that is logically equal to:
var
szBuffer: string;
....
szBuffer := sendmessage(secondappshandle,WM_MYMESSAGE,0);