How to implement a button to jump from one tab to another

  • Thread starter Thread starter thomas.woldert
  • Start date Start date
T

thomas.woldert

Hi,

Is there a way to implement a button on a custom form with several
tabs to jump from one tab to another?

Regards, Thomas
 
Use the Inspector.SetCurrentFormPage method for that:

Sub CommandButton1_Click()
Set insp = Item.GetInspector
insp.SetCurrentFormPage "Your Page Caption"
Set insp = Nothing
End Sub
 
Back
Top