07-18-2013 09:14 AM
Hello,
I'm developing a software where I constantly read data from an equipment. In this software there is a command that requires a password to be input. I was trying to use the Prompt User for Input to receive the password from the user. However when the Prompt User screen pops up, my software stops reading the data from the equipment until the user inputs the password. I don't want that. I still want to read the data from the equipment while the user is inserting the password.
Is there a way to execute the Prompt User for Input in parallel process while executing the read data part? Is there another way to request a password from the user?
Thank you very much for helping!
Solved! Go to Solution.
07-18-2013 09:16 AM
07-18-2013 09:26 AM
@WKAriyoshi wrote:
Is there a way to execute the Prompt User for Input in parallel process while executing the read data part? Is there another way to request a password from the user?
Executing these tasks (reading from instrument AND prompting user for inputs) in parallel loops can solve your problem instantly, if you can share the code, one can pin point what & where exactly changes are required or parallel loop can be included (along with any other changes which might be required).
07-18-2013 09:27 AM
Thanks for the fast reply, GerdW.
I'm trying to find some examples to learn how to create these parallel loops. Can you send me some links about it?
07-18-2013 09:32 AM
07-18-2013 12:52 PM
After some research over the net, I found some examples and learned how to create an average loop process.
Thanks for the help.