Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
PeekMessage in VFP??
Message
From
21/12/1998 15:13:55
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
PeekMessage in VFP??
Miscellaneous
Thread ID:
00169417
Message ID:
00169417
Views:
58
Is there anywhere in a form where one can trap
WM_ messages like this C code?


Best regards
Per Simmersholm


while(1) {
while(PeekMessage(&msg, NULL, 0, 0, PM_REMOVE)) {
if(msg.message==WM_QUIT)
break;
TranslateMessage(&msg);
DispatchMessage(&msg);
}
if(msg.message==WM_QUIT)
break;
Refresh(); // idle, refresh the display
}
return(msg.wParam);
Next
Reply
Map
View

Click here to load this message in the networking platform