iannuzzelli
Programmer
I am using this code:
Dim X As Control
For Each X In Me.Controls
If TypeOf X Is TextBox Then
X.Text = ""
End If
for some reason only the controls on the 1st level of the form are cleared. For example All textboxes contained on Tabcontrols and Groupboxes are not cleared. I need to specify each control and look for other controls on that control.
Any Ideas?