10-31-2008 08:27 PM
how can i display elapsed time in a case structure??
my vi is a case structure with just the system exec vi and i wish to display the elapsed time or anything else that indicates the system exec vi is running.
10-31-2008 11:02 PM
11-01-2008 11:43 AM
you are correct i have the system exec set to wait.
i still havn't figured out how to do this yet
11-01-2008 02:32 PM - edited 11-01-2008 02:33 PM
There are many ways to do this. One way is to use local variables, though that's clumsy. Another is to use notifiers. Another is to use a queue. Another ...
Here is an example using notifiers:
"my.bat" is a simple batch file that simply waits 5 seconds.
11-01-2008 02:39 PM
To criticize my own comment:
smercurio_fc wrote:There are many ways to do this. One way is to use local variables, though that's clumsy.
I should have said: One way is to use local variables, though that's clumsy, but acceptable - you just need to make sure you don't have a race condition. ![]()