Form Fields

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

My Form has several fields at the top. Dependant on the
data in those fields, further data needs to be input on
one of several pages within a multipage tab control on the
same form. I would like to show the relevant page on the
multitab control once the initial data has been entered
e.g. If my product is an investment, I would like the
investment page of the tab control to be visible.

All help would be much appreciated.
 
Use the AfterUpdate event procedure of whichever control makes this
decision, and set the Value of the tab control to the PageIndex of the
relevant page.

Example:
Me.Tab1.Value = Me.pgeInvestment.PageIndex
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top