Search results

  1. B

    Tabbed form validation before switching tabs

    Ok, finally got it sorted out. Bob's comment on the TAG property jarred something in my thoughts. The original code I tried (in post #5) had a check in it for what I thought was the 'required' property, but I never got any flags for incomplete answers til the end when I tried to save the...
  2. B

    Tabbed form validation before switching tabs

    Going on the previous code that worked for validating required fields and yours that was validating text boxes only.... would something along these lines work? Private Sub Command39_Click() Dim intPgIndx As Integer Dim ctl As Control intPgIndx = Me.TabCtl84.Pages(Me.TabCtl84).PageIndex For...
  3. B

    Tabbed form validation before switching tabs

    That partially works. However, not ALL of the fields in my form are required. For example, there's an assigned position drop down box, but if the person's assigned position isn't on that list they can select other and fill in a write-in field. The write-in field is not required because it would...
  4. B

    Tabbed form validation before switching tabs

    Thanks. That's exactly what I would like to do. The only validation criteria is that fields are set to 'required' in their properties in the design of the table. If nothing is in any of those required fields, it needs to not let the user move to the next tab when they click continue. If they all...
  5. B

    Tabbed form validation before switching tabs

    I have a tabbed form built in Access 2007. It's a series of about 32 different questions, with some being fill-in, some drop down boxes to select from, some radio buttons to choose a rating from 1 to 5. The reason I used a tabbed form was just to keep things consolidated on one screen where no...
Back
Top Bottom