How to Display a SDI Application Started with main window hidden
-
Hey Friends I need to start an SDI Application (CFormView Based) Hidden I do not want it to display main window first & then i cann showwindow(sw_hide) In VC++ 6.0 I could do .... AddDocTemplate(pDocTemplate); m_nCmdShow =SW_HIDE; ... but now in VS 2008 it does not works Any clue?
-
Hey Friends I need to start an SDI Application (CFormView Based) Hidden I do not want it to display main window first & then i cann showwindow(sw_hide) In VC++ 6.0 I could do .... AddDocTemplate(pDocTemplate); m_nCmdShow =SW_HIDE; ... but now in VS 2008 it does not works Any clue?
Don't use the WS_VISIBLE style when creating the window? Mark
Mark Salsbery Microsoft MVP - Visual C++ :java:
-
Don't use the WS_VISIBLE style when creating the window? Mark
Mark Salsbery Microsoft MVP - Visual C++ :java:
Thanks will try it is a single document interface type application so will try with CMainFrame & CMyFormView