Cómo generar un orden de selección en el formulario en VISUAL BASIC, de manera que al dar enter me seleccione todos los textbox
Necesito que al simplemente dar enter me tenga seleccionado el primer textbox, y sucesivamente a los otros, actualmente me toma un textvox, doy enter y me salta de una a guardar(commandbuton), este es el código inicial:
Private Sub CommandButton1_Click()
fila = Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Row
Cells(fila, 1) = Laboratorio.value
Cells(fila, 2) = Medicamento.value
Cells(fila, 3) = Presentacion.value
Cells(fila, 4) = Preciomedico.value
Cells(fila, 5) = Preciopublico.value
Cells(fila, 6) = Fecha.value
Cells(fila, 7) = Unidades.value
Cells(fila, 8) = Unidadescaja.value
Cells(fila, 9) = N°cajas.value
Laboratorio.value = ""
Medicamento.value = ""
Presentacion.value = ""
Preciomedico.value = ""
Preciopublico.value = ""
Fecha.value = ""
Unidades.value = ""
Unidadescaja.value = ""
N°cajas.value = ""
Laboratorio. SetFocus