Thread: User form Help
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
merjet merjet is offline
external usenet poster
 
Posts: 812
Default 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