Search results

  1. K

    How to "page up" in a form using vba

    Perhaps the subform is taking the focus when the form opens? You could try to set the focus to the first control on the form on the On Open event: Private Sub Form_Open(Cancel As Integer) Me.YourControl.SetFocus End Sub
Back
Top Bottom