> I encountered this problem when running my labview VI software.
> Whenever I run the VI for the 2nd time onwards, my mouse stops
> functioning. What may be the possible cause? Did my VI cause the
> malfunctioning? If so, what may have been wrong with my VI to cause
This shouldn't have anything to do with UI threads and throttling the
diagram. You mouse is monitored by a driver. That driver is crashing
or hanging because of some interaction with your program.
If your program is accessing memory via Poke, then double check the
memory addresses that you are poking at. If you are making system or
ActiveX calls that are affecting HW settings, then suspect those.
To troubleshoot, comment out suspect parts of your program and see when
the problem goes aw
ay. You can also turn on hilighting and see which
node makes the problem appear. Let the diagram execute slowly while you
move the mouse and when the mouse stops, it was likely due to that node
or a very recent combination of nodes.
If none of this helps, please give more information about what types of
I/O your program is doing.
Greg McKaskle