I set my dialog proc to pick up WM_MOUSEMOVE
in my dialog proc :
mouse is IN!" messagebox come only after about 5 seconds of my mouse constantly moving in the window area. This is bad because i need immediately response. I have no idea how the 5 seconds delay come about. I ran spy++ to check on the messages sent to the dialog and they were all fine and constant flowingCode:BOOL CALLBACK MenuProc(HWND hwnd, UINT Message, WPARAM wParam, LPARAM lParam) { switch(Message) { case WM_INITDIALOG: { } break; return TRUE; case WM_MOUSEMOVE: { MessageBox(NULL, "mouse is IN!", "GOOD",MB_ICONEXCLAMATION | MB_OK); } break; .....
any idea what's going on??
using
- win98se
- vc++6.0
- API style of coding



LinkBack URL
About LinkBacks


