A
Al
Hi All,
Anyone know how to make the following loop not include textbox10 and
textbox11?
Cheers
-Al
Private Sub ClearBoxes()
Dim myControl As Control
For Each myControl In Frame1.Controls
If TypeOf myControl Is TextBox Then
myControl.Text = ""
End If
Next
End Sub
Anyone know how to make the following loop not include textbox10 and
textbox11?
Cheers
-Al
Private Sub ClearBoxes()
Dim myControl As Control
For Each myControl In Frame1.Controls
If TypeOf myControl Is TextBox Then
myControl.Text = ""
End If
Next
End Sub