07-28-2009 05:01 PM
Solved! Go to Solution.
07-29-2009 01:10 AM - edited 07-29-2009 01:10 AM
Hi SteveP,
can you explain why you need it? Maybe it also helps if you use a parallel running loop with a queue. Insert your code from the graph event to one case of the parallel loop to do what you currently do. If you need this event from another place, then you can simply send a queue command to the parallel running loop to get the same function as moving the cursor manually.
Hope it helps.
Mike
07-29-2009 08:15 AM
The graph cursor move event contains processing code for data on the graph along with front panel display of those results. Data is put onto the graph during data acquisition which occurs in another event. When that data acquisition event finishes I need to cause the processing code to execute once to update the front panel display so its results are shown for the new acquired data.
I could put the processing code into a different event that fires on say a button value change. Then the graph cursor move event would fire that button event change by setting its value change property. The data acquisition event could also fire that button event.
07-29-2009 08:18 AM
Create a User Event and configure the event case that handles the cursor move to handle that event as well. THen fire that event when the data updates?
Ben