For Each ctrl As Control In Me.Controls
If ctrl.GetType Is GetType(TextBox) Then
ctrl.Text = String.Empty
' Do something
End If
Next
แต่มันจะข้ามที่อยู่ใน Groupbox
ถ้าเราจะให้ใน Groupbox ทำด้วยก็สั่งแบบนี้
For Each ctrl As Control In Groupbox1.Controls If ctrl.GetType Is GetType(TextBox) Then ctrl.Text = String.Empty ' Do something End If Next
No comments:
Post a Comment