Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is there an easy way to clear all textboxes on a form ?
|
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
No problem anymore.
I did it this way. Private Sub cmdClearFormTextBox_Click() For Each ctl In Me.Controls If TypeName(ctl) = "TextBox" Then ctl.Text = "" End If Next ctl End Sub |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Clear Comboboxes & Textboxes | New Users to Excel | |||
UserForm TextBoxes (with ControlSource set) won't clear in one click | Excel Programming | |||
TextBoxes on a Form | Excel Programming | |||
Form Textboxes | Excel Programming | |||
Clear Textboxes, Labels, and Checkboxes | Excel Programming |