How to hide my dialog without any flash as soon as my application start?
-
In some case, I would like my application to hide its dialog as soon as my application start. I post message "WM_HIDEWINDOW" to the main dialog self in OnInitDialog, but there is a flash in screen before the dialog was realy hidden. Is there any other good idea to prevent or reduce the flash? Nothing impossible, Nothing sure
-
In some case, I would like my application to hide its dialog as soon as my application start. I post message "WM_HIDEWINDOW" to the main dialog self in OnInitDialog, but there is a flash in screen before the dialog was realy hidden. Is there any other good idea to prevent or reduce the flash? Nothing impossible, Nothing sure
Is it a Modal Dialog then the hiding of the dialog will make the application looked hanged . And as far as hiding the dialog is dont send a WM_HIDEWINDOW . do dlg.ShowWindow(False) before you do a DoModal.
Regards, FarPointer Blog:FARPOINTER