Dropdown boxes

  • Thread starter Thread starter Arturo
  • Start date Start date
A

Arturo

In Access I use Me.Field2.Dropdown in the OnGotFocus event. In the
AfterUpdate event of Field1 I use the following:

If Field1 = "x" Then
Field2 = "y"
Field3.Setfocus
End If

The problem is the focus stays on Field2, the dropdown function is
activated, and the focus doesn't move to Field3. Can you help?
 
Back
Top