由於VB
Form上所有的TextBox清空
Private Sub ClearTextBox(cc As Control
For Each ctl As Control In cc
If TypeOf ctl Is TextBox Then
CType(ctl
Else If ctl
ClearTextBox(ctl
End If
Next
End Sub
調用
ClearTextBox(Me
From:http://tw.wingwit.com/Article/program/ASP/201311/21781.html