002
24.08.2005, 19:33 Uhr
~progfox
Gast
|
Vielen Dank!
Ich habs dann so gemacht (stand bei irgendwelchen FAQs im Netz):
MSG msg;
while( ::PeekMessage( &msg, NULL, NULL, NULL, PM_NOREMOVE ) ) { if (::GetMessage( &msg, NULL, 0, 0 ) == -1) { // handle the error and possibly exit } else { ::TranslateMessage(&msg); :ispatchMessage(&msg); } } |