• Tab control on a form

    Author
    Topic
    #352738

    I have created a form using the tab control feature. I have found that I can arrange the tab order on each tab, but I haven’t figured out how to tab to the next tab when I tab from the last field on the first tab. Boy, a lot of the word “tab” in that last sentence. I hope you understand what I mean.
    As Fred Flinstone would say, “Tabadabado!”

    Viewing 0 reply threads
    Author
    Replies
    • #513941

      Control+Tab moved moves the focus to the next tab in the tab order. Control+Shift+Tab moves to the previous tab

      • #513946

        Put this code in the OnExit event of the last control on first tab. Will automatically tab to first control on 2d tab. Tab pages are numbered 0,1,2,….

        Private Sub B_150_Exit(Cancel As Integer)
        Dim tbc As Control
        Dim pge As Page
        Dim ctl As Control

        Set tbc = Me!TabCtl0
        tbc.Value = 1
        Set pge = tbc.Pages(tbc.Value)
        End Sub

    Viewing 0 reply threads
    Reply To: Tab control on a form

    You can use BBCodes to format your content.
    Your account can't use all available BBCodes, they will be stripped before saving.

    Your information: