How to access sub menu items in Menu Bar

M

mookashi

hi,
how do i programamtically access the values set in the sub menu item
of the Menu Bar in the Explorer window.
Suppose i want to know the values set in the Tools/Options menu lik
the Message Format(whether the user has selected plain/html/rich text)
or the signature he has set, how do i get these values.

i have tried using the commandbarcontrols but im not able to get
through to that level.

Here is what im trying to do

Dim tempBar As Office.CommandBar
Dim tempcontrols As Office.CommandBarControls
Dim tempcontrol As Office.CommandBarControl

Dim i As Integer

Set tempBar = Application.ActiveExplorer.CommandBars.Item("Tools")
Set tempcontrols = tempBar.Controls("Options")

how do i go ahead from her
 
S

Sue Mosher [MVP-Outlook]

Most of those options are settings in the Windows registry and therefore
have to be set with registry code. There's no comprehensive list, although
some values are documented in the MSKB. Have fun experimenting.
 

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