PDA

Click to See Complete Forum and Search --> : verify optionbutton fast


Marcelo Velasquez
Jan 6th, 2000, 08:56 PM
How do I do to verify which optionbutton it is with value true without using " if elseif "?

------------------
The blessing of God enriches and it doesn't increase pains

parkes
Jan 6th, 2000, 09:36 PM
Try something like this

for a=0 to optionbuttons.count-1
if optionbuttons(a).value=true then
'whatever you want it to do
next a

Of course the optionbuttons must be in a control array


------------------
Thanks in advance for any help provided.