I have a button on this tabpage which, when a user clicks, clears all of the fields. However, I have set one textbox to a read-only textbox which has a counter in it. How can I programmatically clear all of the other fields, minus this textbox. (There are other textboxes on this tab.
This is what code I have for clearing the textbox fields:
For Each Me.cControl In TabPage3.Controls
If (TypeOf cControl Is TextBox) Then
cControl.Text = ""
End If