Clear all the Values of the Text Box
Clear all the Values of the Text Box
Rate Clear all the Values of the Text Box
(2(2 Vote))
Dim Ctl as Control
' Executing the For Loop
For Each Ctl in Me.Controls
' Checking whether the Control / Object is a Text Box
If TypeOf Ctl is TextBox Then
Ctl.Text = ""
End If
Next
Clear all the Values of the Text Box Comments
No comments yet — be the first to post one!
Post a Comment