Account Options

  1. Sign in
The old Google Groups will be going away soon.
Switch to the new Google Groups.
Google Groups Home
« Groups Home
How to code MS Outlook Shortcut Bar in VB
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  6 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Cheun Kiat  
View profile  
 More options Mar 14 2001, 10:00 pm
Newsgroups: microsoft.public.office.developer.outlook.vba
From: "Cheun Kiat" <cheunk...@tokai.com.sg>
Date: Thu, 15 Mar 2001 10:52:34 +0800
Local: Wed, Mar 14 2001 9:52 pm
Subject: How to code MS Outlook Shortcut Bar in VB
Hi,

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


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Cheun Kiat  
View profile  
 More options Mar 17 2001, 11:08 am
Newsgroups: microsoft.public.office.developer.outlook.vba
From: "Cheun Kiat" <cheunk...@tokai.com.sg>
Date: Thu, 15 Mar 2001 17:47:41 +0800
Local: Thurs, Mar 15 2001 4:47 am
Subject: Re: How to code MS Outlook Shortcut Bar in VB
Thanks for your advice. I have tried out the sample codes from VB online
help. But I still have some doubts:
1. Those sample codes are for customising MS Outlook. But I would like to
deploy the Outlook Shortcut Bar as an independent or separate menu bar.
Hence, I wonder if the sample codes can serve my purpose.

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...


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Cheun Kiat  
View profile  
 More options Mar 17 2001, 11:08 am
Newsgroups: microsoft.public.office.developer.outlook.vba
From: "Cheun Kiat" <cheunk...@tokai.com.sg>
Date: Thu, 15 Mar 2001 17:47:57 +0800
Local: Thurs, Mar 15 2001 4:47 am
Subject: Re: How to code MS Outlook Shortcut Bar in VB
Thanks for your advice. I have tried out the sample codes from VB online
help. But I still have some doubts:
1. Those sample codes are for customising MS Outlook. But I would like to
deploy the Outlook Shortcut Bar as an independent or separate menu bar.
Hence, I wonder if the sample codes can serve my purpose.

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...


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Neo [MVP Outlook]  
View profile  
 More options Mar 17 2001, 11:08 am
Newsgroups: microsoft.public.office.developer.outlook.vba
From: "Neo [MVP Outlook]" <n...@mvps.org>
Date: Wed, 14 Mar 2001 21:12:32 -0800
Local: Thurs, Mar 15 2001 12:12 am
Subject: Re: How to code MS Outlook Shortcut Bar in VB
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" <cheunk...@tokai.com.sg> wrote in message

news:e#nZBsPrAHA.1796@tkmsftngp02...


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Hollis D. Paul  
View profile  
 More options Mar 17 2001, 11:08 am
Newsgroups: microsoft.public.office.developer.outlook.vba
From: "Hollis D. Paul" <Hol...@outlookbythesound.com>
Date: Thu, 15 Mar 2001 12:16:59 PST
Local: Thurs, Mar 15 2001 3:16 pm
Subject: Re: How to code MS Outlook Shortcut Bar in VB
In article <O105$TTrAHA.1456@tkmsftngp04>, Cheun Kiat wrote:
> 2. Is there a VB control available in VB6 that can use command buttons and
> icons to serve as a menu handler?

The object for the Office Tool bar are in the Office Type Library, which,
when you go to set your reference to it, is shown as Microsoft Office 9.0
Object Library.  The file name is MSO9.dll.

 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


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Neo [MVP Outlook]  
View profile  
 More options Mar 17 2001, 11:08 am
Newsgroups: microsoft.public.office.developer.outlook.vba
From: "Neo [MVP Outlook]" <n...@mvps.org>
Date: Fri, 16 Mar 2001 04:45:20 -0800
Local: Fri, Mar 16 2001 7:45 am
Subject: Re: How to code MS Outlook Shortcut Bar in VB
This response to user was sent offline to a private email, but figured it
should help the group as well.

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" <cheunk...@tokai.com.sg> wrote in message

news:O105$TTrAHA.1456@tkmsftngp04...


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »