FORMULARIO con varios textbox que no cambian al dar enter
Tengo un formulario con varios textbox
El cual tengo asignado TABINDEX por numero
El problema esta que (AVECES no siempre) este al dar enter no sigue indicaciones de pasar al siguiente textbox por cual es molesto...
En cada textbox tengo esto:
Private Sub TextBox8_AfterUpdate()
ActiveSheet.Unprotect
ActiveSheet.Range("AB953").Value = TextBox8.Text
ActiveSheet.Range("AB954").Value = TextBox7.Text
ActiveSheet.Range("AB955").Value = TextBox6.Text
ActiveSheet.Range("AB956").Value = TextBox5.Text
ActiveSheet.Protect DrawingObjects:=True, Contents:=True, Scenarios:=True _
, AllowFormattingCells:=True, AllowFormattingColumns:=True, _
AllowFormattingRows:=True
End SubPrivate Sub TextBox8_KeyPress(ByVal KeyAscii As MSForms.ReturnInteger)
KeyAscii = Asc(UCase(Chr(KeyAscii)))
End Sub