What do u think is wrong in this code???
no textbox is being affected :(
For Each ctrl As Control In Panel1.Controls
If ctrl Is GetType(TextBox) Then
CType(ctrl, TextBox).Text = ""
End If
Next