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

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
 
S

Sue Mosher [MVP-Outlook]

Use the Inspector.SetCurrentFormPage method for that:

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

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

Top