Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim tp As TabPage = Nothing
Dim c As Control = Nothing
For Each tp In Me.TabControl1.TabPages
For Each c In tp.Controls
If TypeOf c Is TextBox Then
DirectCast(c, TextBox).Text = String.Empty
End If
Next
Next
Dim tp As TabPage = Nothing
Dim c As Control = Nothing
For Each tp In Me.TabControl1.TabPages
For Each c In tp.Controls
If [b]c.GetType[/b] Is [b]GetType([/b]TextBox[b])[/b] Then
DirectCast(c, TextBox).Text = String.Empty
End If
Next
Next