Is there a keyboard shortcut to advance tabs?

SOLVED

I've used other versions of Sage, but I'm new to Sage 500. Is there a keyboard shortcut to advance tabs when you're in Accounts Payable > Process Vouchers > Enter Vouchers? I'd like to be able to use a shortcut to move from the header tab to the detail tab because I don't fill in many fields on the header tab. 

Parents Reply Children
  • 0 in reply to CWI Accounts

    Review the Tutorials for a lot of other tips. There are also some settings you can customize in User Preferences related to how forms appear, defaults for some data and whether to substitute Enter key as Tab.

    If you have Customizer, you can add & before a letter in a caption to represent a keyboard shortcut (verify they don't conflict with one another) and potentially abbreviate entry by moving controls (even to different frames or tabs). 

    Also, for those with CZ, you can list controls by adding following code to a button or just invoke DP metadata:

    Dim oFormDPMeta

    Set oFormDPMeta = CreateObject("DPZMA001.cApplication")

    If Not oFormDPMeta Is Nothing Then
    oFormDPMeta.Activate(Form.moForm)
    End If

    Set oFormDPMeta = Nothing