[Resolved]Help in VB 2005
I am very new at VB 2005. I used to clear my TextBoxes on the form by using following code in VB6.
I call a procedure from Module named ResetForm
VB Code:
Sub ResetForm()
DIM CTRL as Control
For Each CTRL in Me.Controls
If TypeOf CTRL Is TextBox then _
CTRL=vbNullString
Next
End Sub
I have used more than one GroupPanel on the form. Whenever I debug the program, It does not go to the control which are in the GroupPanel.
I want to check each control in each GroupPanel.
So, please help me out....