Per svuotare tutte le TextBox di un form, è possibile utilizzare questo codice:
Dim ctrl As New Form.ControlCollection(Me)
ctrl = System.Windows.Forms.Form.ActiveForm.Controls
For Each c As Control In ctrl
If TypeOf (c) Is System.Windows.Forms.TextBox Then
c.Text = ""
End If
Next