Using CVI 7.1.1, the EnableExtendedMouseEvents is disabled whenever I call the SuspendTimerCallbacks function.
i.e.
int CVICALLBACK PlotEvent (int panel, int control, int event, void *callbackData, int eventData1, int eventData2)
{
if (event == EVENT_LEFT_MOUSE_UP)
{
// wait for UIF to update
PostDeferredCall (GetCursorData, 0);
}// end if (event)
return 0;
}// end PlotEvent