I would like to use the MS Outlook (Shortcut) Bar in my VB application to
serve as a menu handler. How do I go about doing it? Anyone has a clue.
Thanks
Cheun
2. Is there a VB control available in VB6 that can use command buttons and
icons to serve as a menu handler?
Regards,
Cheun
"Neo [MVP Outlook]" <n...@mvps.org> wrote in message
news:#rQsn5QrAHA.1224@tkmsftngp04...
> This is for Outlook 2000 only, but you might want to take a look at the
> following properties.
>
> OutlookBarGroup
> OutlookBarGroups
> OutlookBarPane
> OutlookBarShortcut
> OutlookBarShortcuts
> OutlookBarStorage
>
> But in a nutshell when looking at the online help, you have this code
> snippet.
>
> Dim myOlApp As New Outlook.Application
> Dim myOlBar As Outlook.OutlookBarPane
> Dim myolGroup As Outlook.OutlookBarGroup
> Dim myOlShortcuts As Outlook.OutlookBarShortcuts
> Set myOlBar = myOlApp.ActiveExplorer.Panes.Item("OutlookBar")
> Set myolGroup = myOlBar.Contents.Groups.Item(1)
> Set myOlShortcuts = myolGroup.Shortcuts
> myOlShortcuts.Add "http://www.microsoft.com", _
> "Microsoft Home Page", 3
>
> "Cheun Kiat" <cheu...@tokai.com.sg> wrote in message
> news:e#nZBsPrAHA.1796@tkmsftngp02...
Regards,
Cheun
OutlookBarGroup
OutlookBarGroups
OutlookBarPane
OutlookBarShortcut
OutlookBarShortcuts
OutlookBarStorage
But in a nutshell when looking at the online help, you have this code
snippet.
Dim myOlApp As New Outlook.Application
Dim myOlBar As Outlook.OutlookBarPane
Dim myolGroup As Outlook.OutlookBarGroup
Dim myOlShortcuts As Outlook.OutlookBarShortcuts
Set myOlBar = myOlApp.ActiveExplorer.Panes.Item("OutlookBar")
Set myolGroup = myOlBar.Contents.Groups.Item(1)
Set myOlShortcuts = myolGroup.Shortcuts
myOlShortcuts.Add "http://www.microsoft.com", _
"Microsoft Home Page", 3
"Cheun Kiat" <cheu...@tokai.com.sg> wrote in message
news:e#nZBsPrAHA.1796@tkmsftngp02...
Hollis D. Paul [MVP - Outlook]
Hol...@outlookbythesound.com
h...@compuserve.com
Using Virtual Access 4.52 build 277 (32-bit), Windows 2000 build 2195
Mukilteo, WA USA
ah... MS doesn't have such a control, but I think vbaccelerator.com might
have control/sample that will help you on your path. (I think it is called
the vbAccelerator ListBar control this in under the code/controls section.)
"Cheun Kiat" <cheu...@tokai.com.sg> wrote in message
news:O105$TTrAHA.1456@tkmsftngp04...