VB6 - Clearing all textboxes on the form with one command

9,048
0
Publicado 2009-07-06
Sorry for bad Quality D:

Dim ctl As Control
For Each ctl In Me.Controls
If TypeOf ctl Is TextBox Then
ctl.Text = ""
End If
Next

Todos los comentarios (14)