Bucle para operar varios textbox
Quisiera molestarlos con algo que me esta causando algo de trabajo, tengo un formulario con algunos textbox, tengo un evento que opera varios textbox de la siguiente manera:
If cbomaq1.Value = 27 Then
txtrunmaq1.Value = 0
Else
txtrunmaq1.Value = (txttiros1.Value / txtestandar1.Value) + txtalistmaq1.Value
End If
If cbomaq2.Value = 27 Then
txtrunmaq2.Value = 0
Else
txtrunmaq2.Value = (txttiros2.Value / txtestandar2.Value) + txtalistmaq2.Value
End If
.........................
If cbomaq46.Value = 27 Then
txtrunmaq46.Value = 0
Else
txtrunmaq46.Value = (txttiros46.Value / txtestandar46.Value) + txtalistmaq46.Value
End If
Debo repetirlo 46 veces en este evento y tengo otros similares, alguien me comento que con un bucle podría solucionarlo, podrían ayudarme con este tema.