Thread
:
User form Help
View Single Post
#
3
Posted to microsoft.public.excel.programming
merjet
external usenet poster
Posts: 812
User form Help
Dim c As Control
For Each c In Controls
If TypeName(c) = "TextBox" Then
c = ""
End If
If TypeName(c) = "OptionButton" Or _
TypeName(c) = "CheckBox" Then
c.Value = False
End If
Next c
Hth,
Merjet
Reply With Quote
merjet
View Public Profile
Find all posts by merjet