Search results

  1. F

    Using Hotkey to navigate to a new record in subform from sub-subform

    OK, so I have the following that works perfectly for the first If statement, but the second one errors out...Any sugestions? Can you have multiple keycodes within the KeyPress Event? Private Sub Form_KeyPress(KeyAscii As Integer) If KeyAscii = 13 Then ' ( 13 = "Ctrl + M" Key )...
  2. F

    Using Hotkey to navigate to a new record in subform from sub-subform

    Any chance you could provide a basic sample of how that would look? I don't play in the VBA that much at all. Would you make this an event for something like key press or something like that? I used to be able to do things like this by creating an autokey macro, but that doesn't work for the...
  3. F

    Using Hotkey to navigate to a new record in subform from sub-subform

    I am trying to create a hotkey to navigate users from a sub-subform to the subform and enter a new record. I have tried using goto control and goto record, but both end up in errors. The problem is that Access says the subform is closed or the control i am identifying doesn't exist. Any...
Back
Top Bottom