Form Fields

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.
 
A

Allen Browne

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
 
Top