Search results

  1. T

    Tab Control using Next button

    My solution to adding the next button on a tab ctrl. I am a beginner so it may not be as pretty as it should be, but it works. Code: Private Sub btnNxtTab_Click() 'this button selects the next tab On Error GoTo Err_btnNxtTab_Click 'this line of code moves the focus to the next tab...
  2. T

    Tab Control using Next button

    Thanks Uncle Gizmo, with slight modification of your code I was able to get it to work perfectely. Thanks again.
  3. T

    Tab Control using Next button

    Still needing help. The only difference I can tell between tabs is the Page Index Value and I don't know how to address that in a button. Please help as I am new to Access programming. Thanks
  4. T

    Tab Control using Next button

    I would like to use a Next button instead of having users click the tabs. Can this be done eaisly? Please help Thanks
  5. T

    If (checkbox) = true, the (textbox) = "Yes"

    =IIf([A1]=0,"No","Yes") I get an error message when I display the report. What am I doing wroing? A1 is a option group box. With a 0 for the value of Label "No" and 1 for label "yes".
Back
Top Bottom