C
Chrissy
How do I identify what type of control I have on a form
Dim c As Control
For Each c In UserForm1.Controls
if c (is a text box) then
some code
Next c
What goes in the brackets?
Chrissy.
Dim c As Control
For Each c In UserForm1.Controls
if c (is a text box) then
some code
Next c
What goes in the brackets?
Chrissy.