09-21-2010 10:43 PM
Hi lavas,
I was creating a user login system using username and password, but there something less with the functions. Here below description of the system.
Hope anyone may solve this.
Thank you.
09-21-2010 10:52 PM - edited 09-21-2010 10:54 PM
Sounds like a homework assignment. What have you tried?
09-21-2010 11:03 PM
show your effort.. and ask.
post your vi what you have try.,
09-22-2010 12:10 PM
Here is my basic programs.
09-22-2010 02:22 PM
Don't have multiple event structures set up like that in one VI. They are both sharing a common loop. That outer loop won't iterate until the inner loop completes up top, and an event occurs on the event structure down below.
Your VI response will probably feel hung from time to time as the loops wait for one event structure or the other to complete.
09-22-2010 02:43 PM
So what I suppose to do then?
09-22-2010 03:32 PM
Either use one event structure that contains both. Or put the two event structures in two different while loops.
I would try the first option since it seems like the events in both structures are related to each other.
09-22-2010 04:17 PM