Use PageBreaks instead of tabs


/ Published in: Visual Basic
Save to your folder(s)

On form, insert a Page Break after the first group of fields. This creates two "pages" in the form, which can be toggled using a command button on each.


Copy this code and paste it in your HTML
  1. Private Sub cmdCompanyInfo_Click()
  2. ' move to first page of form.
  3. Me.GoToPage 1
  4. End Sub
  5.  
  6. Private Sub cmdPersonalInfo_Click()
  7. ' move to second page of form.
  8. Me.GoToPage 2
  9. End Sub

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.