Es mas facil que crees una matris de textbox osea:
a(0).text
a(1).text
Usas un for y recorres todo y haces algo asi
Código vb:
Ver originalDim Fallo As Boolean
For X = 0 to ELULTIMOTEXTBOX
If a(x) <> "F" AND a(x) <> "V" Then
Fallo = True
End If
Next X
If Fallo = False Then
Call Order
End If