How to call a procedure from a custom command bar in Outlook 2007

S

Sqt Waddle

Hello and TIA for your assistance,

I am trying to convert VBA code in OL07 to an Add-in in VB6.

The Add-in creates a custom command bar with three buttons and fires code
when a new inspector is created.

When I load the add-in the command bar appears, the new inspector code fires
and the add-in disconnects on exit.

However, I cannot get the onaction event for the command bar buttons to fire.

The code that creates the button is:
Set custBar = Application.ActiveExplorer.CommandBars.Add(Name:="Show",
Position:=msoBarTop, Temporary:=True)
custBar.Visible = True


Set Cusbutton = custBar.Controls.Add(Type:=msoControlButton)
With Application.ActiveExplorer.CommandBars("Show").Controls(1)
.Style = msoButtonCaption
.Caption = "My Stuff"
.OnAction = "RunMyStuff"
.ToolTipText = "My Stuff"
.BeginGroup = True
.Tag = "Test Tag"
End With

Where should I place Sun RunMyStuff so that it will fire when the button is
clicked?

Thanks,
 

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