experiment...
i need to clear all tetxtbox in frame1, but dont work
note:
in frame1 i have only tetxtbox and label
i need to clear all tetxtbox in frame1, but dont work
note:
in frame1 i have only tetxtbox and label
Code:
Private Sub PULISCI_TBOX()
Dim CTL As Control
For Each CTL In Me.Controls
If Not CTL.Container Is Nothing Then
If CTL.Container.Name = "Frame1" Then
'Debug.Print CTL.Name
If TypeName(CTL) = "Textbox" Then
[b]'here i need to set the currebnt tetxtbox=""[/b]
'Debug.Print CTL.Name
End If
End If
End If
Next CTL
End Sub