i) vi that takes in new configs from the user. What I have noticed is that the new data entered by the user(in the client vi) is one cycle back. ie - If a user enters 2, it will not appear until the next call to the client vi? Any suggestions? Thanks - BobGorka
Thank you for responding! My main program is in a while loop. The while loop executes until the process is complete. During the process, I would like for the user to be able to modify PID settings. My solution is to use the VI server configs. I created a client vi called "reconfig.vi" that is called from a bool switch wired to a case statement(in the main.vi within the main while loop)that invokes 1)property Node(T - FP.Open) 2) Invoke Node (Run Vi/F - wait until done) 3) Invoke Node (Get Control Value,Control name, Type descriptor). I use unflatten from string to get the data back.
What I have noticed is that when the client vi is called, and new data is entered into the client.vi, the data does not get sent back to the main.vi until the next call of the clie
nt from the main program.It appears the data is "n - 1". Thank you - Bob