I want to add, I have situation where, in the dialog procedure, I am writing to an edit control on the dialog box as follows,
1. wsprintf (szBuffer, TEXT ("%d"), 0) ;
2. SendDlgItemMessage (hdlg, IDC_EDIT_00, WM_SETTEXT, 0,
(LPARAM) (LPSTR) szBuffer) ;
Now for some reason, The...