S
SOS
Hi all,
I have a userform with several controls on it and I want to reset the
all to have no value in them. I found the code below by searching bu
when I change it from
ctl.visible=false
to ctl.value=""
it doesn't like it
Can anyone help, please?
TIA
Seamus
******************************************
Private Sub Test()
Dim ctl As Control
For Each ctl In Controls
ctl.Visible = False
Next ctl
End Su
I have a userform with several controls on it and I want to reset the
all to have no value in them. I found the code below by searching bu
when I change it from
ctl.visible=false
to ctl.value=""
it doesn't like it
Can anyone help, please?
TIA
Seamus
******************************************
Private Sub Test()
Dim ctl As Control
For Each ctl In Controls
ctl.Visible = False
Next ctl
End Su