DaTommyboY
Programmer
Hello Everybody,
I am looking for a way to control some optionbuttons with a index number, like Option1(0), Option1(1) and Option2(0) ans so on.
Without the index number it works quit nice like the code displayed here,
does anybody know a way to do that?
Thanks in advance
Tom
I am looking for a way to control some optionbuttons with a index number, like Option1(0), Option1(1) and Option2(0) ans so on.
Without the index number it works quit nice like the code displayed here,
does anybody know a way to do that?
Code:
Dim K as Integer
K=1
Form1.Controls("Option" & Trim(Str(K))).Visible = True
Thanks in advance
Tom