View Single Post
  #2  
Old 03-08-2004, 06:15
KiinG
 
Posts: n/a
How do you create this window ? If you create it with CreateWindow() do not use the WS_VISIBLE flag.
If you are trying to hide the window of another application use ShowWindow:

BOOL ShowWindow(
HWND hWnd, // handle to window
int nCmdShow // show state
);
Reply With Quote