09-25-2013 12:55 AM
I am trying to create undo button with the same functionality of Undo action, but in my vi i dont know whre is the problem coming, i am using case structure and shift register to retain the previous values but the values from shoft registers are not passing properly.
Below i am attaching the vi
Solved! Go to Solution.
09-25-2013 01:07 AM
Can you upload the VI in 2011 format. I will change there only
09-25-2013 01:13 AM
Thanks Ranjeet_Singh for the reply,
Below i am attaching the vi in 2011 format
09-25-2013 02:11 AM
Your loop spins millions of time per second and when you press undo, the history value has become equal to the string value because you cannot change the string this fast. You need to use an event structure. You also should use a local variable instead of a value property node. Less overhead.
See how far you get....
09-25-2013 02:20 AM
Here is one possibility.
09-25-2013 02:23 AM
Thanks altenbach for reply,
the vi is working fine for me.