Sub para Apagar os TextBox's de uma só vez.
Por Dr.Spy
Private Sub LimpaTextBoxs()
Dim texto As Control
For Each texto In Me.Controls
If TypeOf texto Is TextBox Then
texto.Text = ""
End If
Next
End Sub
Por Dr.Spy
Comments
Postar um comentário