outlook

Add-in Express™ Support Service
That's what is more important than anything else

outlook
outlook contact's details window 
tomer st


Guest


hi,

How can I add commandBar into outlook contact's details window?
Posted 23 Nov, 2006 06:56:11 Top
Sergey Grischenko


Add-in Express team


Posts: 7233
Joined: 2004-07-05
Hi Tomer.

You just need to set the ItemTypes property of the ADXOlInspectorCommandBar component to 'Contact'.
Please look at the MyFirstOutlookAddin example from the ADX installation package to learn how it works.

P.S. Note that we take up your forum requests in the order we receive them.
Besides, it may take us some time to investigate your issue. Please be sure we will let you know as soon as the best possible solution is found.
Posted 23 Nov, 2006 08:39:54 Top
tomer st


Guest


Thanks, works fine.

Is there any command bar that appears both in
outlook main window (contacts, tasks etc) like the ExplorerCommandBar
and also appears in
details window (contact details, task details etc) like the ExplorerCommandBar?
Posted 23 Nov, 2006 09:31:51 Top
Sergey Grischenko


Add-in Express team


Posts: 7233
Joined: 2004-07-05
No, you should use the ADXOlExplorerCommandBar component for Outlook explorer windows and the ADXOlInspectorCommandBar component for Outlook inspector windows.
Posted 23 Nov, 2006 14:18:55 Top
tomer st


Guest


thanks
Posted 26 Nov, 2006 03:10:46 Top
tomer st


Guest


When I add inpector command bar into contact's details,
How can I detect the contact that the inspector belong to?

For example:

Private Sub adxCbbDial_Click(ByVal sender As Object) Handles adxCbbDial.Click
MsgBox(sender.BusinessTelephoneNumber)
MsgBox(sender.CompanyName)
End Sub
Posted 26 Nov, 2006 09:36:48 Top
Sergey Grischenko


Add-in Express team


Posts: 7233
Joined: 2004-07-05
Tomer, please use the ActiveInspector() method of the Outlook application to obtain the contact item from the button event handler above.
Posted 27 Nov, 2006 10:17:07 Top