[GD-Windows] Weirdest Error Ever
Brought to you by:
vexxed72
From: Joe C. <jo...@mu...> - 2002-09-11 20:17:58
|
Hi all. I have a very very weird error that I am getting. If I hit the '-' key on the keypad while running my app in the vcnet debugger. Its getting an exception in the GetMessage call so my code looks like this.... while (GetMessage(&msg, this->hWnd, 0, 0)) { TranslateMessage(&msg); DispatchMessage(&msg); } the exception occurs in the GetMessage call, and the call stack basically goes into the kernel at that point and basically gives me no indication as to what the hell is going on. So I figured it was some dumb code of mine. Well I created a new win32 solution/project and built it. And it has the same problem. Hit the '-' keypad key while in the debugger and it throws an exception. The app seems to work ok outside of vc.NET debugger So this is a bug right? Not some weird hotkey or something... -Joe P.S. I never saw anything as weird as this while using vc++ 6 :) |