J
Janie
I'm printing a list of controls on a form.
Using the ControlType property I get the numeric value of the Intrinsic
Constant as in 100 for a Label, 104 for a Command Button.
How do I have the Constant's Name display rather than the Constant's Value?
For Counter = 0 To MyCount - 1
With frm.Controls(Counter)
Debug.Print .Name & vbTab & .ControlType
End With
Next
Thanks for suggestions.
Using the ControlType property I get the numeric value of the Intrinsic
Constant as in 100 for a Label, 104 for a Command Button.
How do I have the Constant's Name display rather than the Constant's Value?
For Counter = 0 To MyCount - 1
With frm.Controls(Counter)
Debug.Print .Name & vbTab & .ControlType
End With
Next
Thanks for suggestions.