Hi Samuel!
You can set breakpoints into callback functions, of
course. If during debug, you never reach the breakpoint, maybe
your callback is never called! Check for this....
In labWindows, differently from other IDEs (some Redmond
IDE....), you can also put a breakpoint at the very beginning of it,
that is:
/*breakpoint here ----> */ int CVICALLBACK print (int panel, int control, int event,
void *callbackData, int eventData1, int eventData2)
{
if( event==EVENT_COMMIT ) {
SetWaitCursor (1);
etc....
so that when you press "print" button, you can see passed parameters!
Hope it helps!
graziano