02-01-2011 11:37 PM
Hi all,,,
I have 3 buttons suppose new,open and delete.i have put each of these cases in an event
Now if i press new button, it has 3 radio buttons suppose a,b and c and this would get highlighted. It will check if a is pressed, if not it would display something and exit. and if a is pressed,it will check if b/c is pressed. If b is pressed glow the round led and if c is pressed glow the sqaure led .what i have done is have put case structure inside the events.similarly for other events open and delete have cases inside it.
But what i observe is once the event occurs and if the buton a,b or c is not pressed and if the execution reaches there and it gets false(radio buttons),and further if i press the button it doesnt get it true....how can i handle this case.
Solved! Go to Solution.
02-01-2011 11:56 PM
02-01-2011 11:59 PM
Hi...
Ya very little of coding...I am a beginner in labview.so will be needing your help
02-02-2011 12:30 AM
Hi saki,
can you upload what you have done so far?
Mike
02-02-2011 12:34 AM
02-02-2011 02:50 AM
Sounds like you're reading the radio buttons in the wrong place so it doesn't update. It's a common problem.
By putting the cases in an event i hope you mean you have 1 event/button.
If most of the event read the radio buttons it's probably easiest to put the radio control outside the event structure (but ofc inside the while loop) so it's read each time and wired into each event.
/Y