|
-
January 31st, 2004, 02:15 AM
#1
how to add text entered in one dialog to another dialog's listbox
how to add text entered in one dialog to another dialog's listbox
-
January 31st, 2004, 04:14 AM
#2
Send a message. For example:
...
#define WM_NEWTEXT WM_USER + 51
...
From the first dialog:
::SendMessage(hSecondDlg, WM_NEWTEXT, (WPARAM)szBuffer, (LPARAM)nSize);
and inf the second dialog you need to write a handler for WM_NEWTEXT
Good luck
-
January 31st, 2004, 05:26 AM
#3
Are these two dialogs part of the same application? Or different ones?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|