If you have array textboxes then you can use looping to clear text box :
Dim i as Integer
For i = 0 to 10
txt(i).Text = ""
Next
Or you can check if the type of control is text box then clear the control text.
For Each txt In Form1.Controls
If TypeOf txt Is TextBox Then txt.Text = ""
Next
Jx_Man
Nearly a Senior Poster
3,329 posts since Nov 2007
Reputation Points: 1,372
Solved Threads: 444