04-24-2006 10:20 PM
04-25-2006 05:56 AM
The basic problem lies in your use of the event structure.
First rule: in an event structure only use code that executes in a blitz.
or better said, don't use code that takes long to execute.
Your while loop takes a long time!
You can either remove the event structure completely and your program works
or inside the event loop don't lock the frontpanel while the event has not finished (if you look creful you find somewhere a boolean switch
04-25-2006 12:49 PM
04-25-2006 03:18 PM