Hi
I've got a Form with some OptionButtons. Now I preferably want to step
through each OptionButton.
Is it somehow possible to do it like For Each OptionButton In formname?
thx for help
Hi
I've got a Form with some OptionButtons. Now I preferably want to step
through each OptionButton.
Is it somehow possible to do it like For Each OptionButton In formname?
thx for help
Hi MastrPhilch,
Try something like:
Dim Ctl As msforms.Control
For Each Ctl In UserForm1.Controls
If TypeOf Ctl Is msforms.OptionButton Then
'do something, e.g.:
Ctl.Visible = False
End If
Next
---
Regards,
Norman
"masterphilch" <masterphilch@gmx.net> wrote in message
news:dgs1n7$hfg$1@news.hispeed.ch...
> Hi
>
> I've got a Form with some OptionButtons. Now I preferably want to step
> through each OptionButton.
> Is it somehow possible to do it like For Each OptionButton In formname?
>
> thx for help
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks