Clear all textbox in form
Clear all textbox in form
API Declarations
'Requirements
'3 textbox and 1 command button
' Your textbox must have an index so that if you call the object name they will all clear.
Rate Clear all textbox in form
(2(2 Vote))
Dim mycontrol As Control
For Each mycontrol In Text1
mycontrol.Text = " "
Next
End Sub
Clear all textbox in form Comments
No comments yet — be the first to post one!
Post a Comment