002
16.06.2003, 20:33 Uhr
Uwe
C/C++ Master (Administrator)
|
Hallo,
C++: |
LRESULT CMainFrame::DefWindowProc(UINT message, WPARAM wParam, LPARAM lParam) { switch (message){ case WM_SYSCOMMAND: switch (wParam & 0xFFF0){ case SC_MAXIMIZE: // Max case SC_MINIMIZE: // Min case SC_SIZE: // Size case SC_MOVE: // Move case SC_CLOSE: // Close return FALSE; default: break; } break; default: break; } return CFrameWnd::DefWindowProc(message, wParam, lParam); }
// nun geht gar nix mehr!
|
-- "Es ist schwierig, ein Programm wirklich idiotensicher zu machen, weil Idioten so genial sind."
Bis dann... Uwe |