
Starting app with hidden window
Hi All:
I seem to be unable to start an SDI app with the window hidden.
I can make the window flash briefly and then go away
by using:
CWinApp::InitInstance(...)
{
...
m_pMainWnd->ShowWindow(SW_HIDE);
...
Quote:
}
but I want it not to flash at all.
I have a view derived from CFormView (not CView).
Thanks, Ido.