24 Feb
2002
24 Feb
'02
9:55 p.m.
----- Original Message -----
From: Steve Burnap
thread. In order to make it obvious that things are happening, the scan thread uses SetDlgItemText to update display the current file being scanned on the dialog. This all works quite well.
... Which does a SendMessage which as you've found does not work quite well. I assume you are using a worker thread which should communicate with a UI thread via PostMessage, never SendMessage. Another method would be to have a time in the dialog that polls a memory location (properly guarded for read/write access.) Jeff