Create your button on your Outlook form and in the VB Script of the form add this...
Then in your ThisOutlookSession add a Public procedure to call your UserForm.VB Code:
Sub CommandButton1_Click() Application.CB1_Click End Sub
Then when you click your CommandButton1 on your Form it will call the public CB1_Click() event procedure showing the userform modally.VB Code:
Public Sub CB1_Click() UserForm1.Show vbModal End Sub





Reply With Quote