S
skchth
I would like to move to another combo box (text4) after update and in case no
changes are made would like to go to same combobox on exit. Used the
following code, but receive error message that focus can not be moved to
control text4 (Run-time error 2110)
Please help
Option Compare Database
Private Sub Text_AfterUpdate()
DoCmd.GoToControl "Text4"
End Sub
Private Sub Text_Exit(Cancel As Integer)
DoCmd.GoToControl "Text4"
End Sub
changes are made would like to go to same combobox on exit. Used the
following code, but receive error message that focus can not be moved to
control text4 (Run-time error 2110)
Please help
Option Compare Database
Private Sub Text_AfterUpdate()
DoCmd.GoToControl "Text4"
End Sub
Private Sub Text_Exit(Cancel As Integer)
DoCmd.GoToControl "Text4"
End Sub