Start a Conversation

Unsolved

This post is more than 5 years old

459

June 20th, 2012 07:00

Custom outlook 2010 button

Any ever created a custom button to deploy to outlook 2010 users containing a link to the sourceone web search?.

We did in the past for emailextender

Thnx

32 Posts

June 21st, 2012 13:00

Hello Tom,

The following instructions can be used to add a link in the Microsoft Outlook 2010 Toolbar:

http://msdn.microsoft.com/en-us/library/ee814736.aspx

Below is a sample of code which can be written to launch the EMC SourceOne Email Management Web Search application:

Sub SourceOneWebSearch()
Dim IE As Object
Set IE = CreateObject("internetexplorer.application")
IE.Visible = True
IE.navigate http:// /search
End Sub

Regards,

Ajay Chanana

No Events found!

Top