Hello, I'm currently experimenting with the windows (vista) tablet pc api. It works but I get a large amount of debug messages similar to:

Code:
First-chance exception at 0x7752fbae in BasicRecognition.exe: Microsoft C++ exception: long at memory location 0x02d5fc24
The errors do not propagate to my code, but I'm curious by nature and don't like having my debug output filled with error messages.

Telling visual studio to break on the errors just shows the disassembly for some routine in kernel32.dll with the following call stack:

Code:
kernel32.dll!7752fbae() 
[Frames below may be incorrect and/or missing, no symbols loaded for kernel32.dll]
kernel32.dll!7752fbae() 	
kernel32.dll!77539a26() 	
InkObj.dll!72f1208c() 	
msvcrt.dll!775f32ff() 	
msvcrt.dll!775f26b3() 	
kernel32.dll!7753d0e9() 	
ntdll.dll!77d919bb() 	
ntdll.dll!77d9198e()
Do these errors indicate that I'm doing something wrong or is visual studio just catching windows' internal errors?