PDA

View Full Version : ridurre un programma nella barra delle applicazioni


ultio
19-06-2003, 14:41
come si puņ fare con visual c++ o con il c++ standard???
grazie

cionci
19-06-2003, 15:23
Con MFC...
wnd.ShowWindow(SW_MINIMIZE);
Con wnd una classe derivata da CWnd...

Con le API:
BOOL ShowWindow(
HWND hWnd, // handle to window
int nCmdShow // show state
);

ShowWindow(hWnd, SW_MINIMIZE);