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
Printable View
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
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.