PC Review


Reply
Thread Tools Rate Thread

Adding Menus to the Ribbon

 
 
RyanH
Guest
Posts: n/a
 
      14th Oct 2008
I have a 2007 Add-In workbook that has XML in it to add a Custon Menu Tab in
the Ribbon. How can I ensure that the tab is always placed last in the
Ribbon. For example, Home, Insert, Page Layout, ...., Developer, CUSTOM TAB
HERE.

Plus, I have noticed that if I save the workbook with a .xls extension the
Ribbon goes back to default settings when activating another workbook and
back to the custom settings I have when the my workbook is reactivated. Why
does it not do that when I have the workbook saved with a .xla extension?
--
Cheers,
Ryan
 
Reply With Quote
 
 
 
 
Ron de Bruin
Guest
Posts: n/a
 
      14th Oct 2008

Hi Ryan

Use insertAfterMso

<tab id="MyCustomTab" label="My Tab" insertAfterMso="TabDeveloper">


> Plus, I have noticed that if I save the workbook with a .xls extension the
> Ribbon goes back to default settings when activating another workbook and
> back to the custom settings I have when the my workbook is reactivated. Why
> does it not do that when I have the workbook saved with a .xla extension?


That's normal in 2007
A xla is a hidden workbook and the code/menus that is in it you want to use in all
open workbooks that is in the xla.

In a normal workbook it will load the ribbonX when you activate the workbook and
remove your changes when you deactivate it



--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"RyanH" <(E-Mail Removed)> wrote in message news:BB8E3FFB-2337-49C8-AAAE-(E-Mail Removed)...
>I have a 2007 Add-In workbook that has XML in it to add a Custon Menu Tab in
> the Ribbon. How can I ensure that the tab is always placed last in the
> Ribbon. For example, Home, Insert, Page Layout, ...., Developer, CUSTOM TAB
> HERE.
>
> Plus, I have noticed that if I save the workbook with a .xls extension the
> Ribbon goes back to default settings when activating another workbook and
> back to the custom settings I have when the my workbook is reactivated. Why
> does it not do that when I have the workbook saved with a .xla extension?
> --
> Cheers,
> Ryan

 
Reply With Quote
 
RyanH
Guest
Posts: n/a
 
      14th Oct 2008
Thanks for the reply. Since I am using a Add-In workbook is there a way to
hide the custom tab when the workbook I want to use the tab in is deactivated
and then unhide it when the workbook is activated? If not, I will just make
sure to test the workbook I want to use the tab in is the activeworkbook
before any of the buttons execute there code.
--
Cheers,
Ryan


"Ron de Bruin" wrote:

>
> Hi Ryan
>
> Use insertAfterMso
>
> <tab id="MyCustomTab" label="My Tab" insertAfterMso="TabDeveloper">
>
>
> > Plus, I have noticed that if I save the workbook with a .xls extension the
> > Ribbon goes back to default settings when activating another workbook and
> > back to the custom settings I have when the my workbook is reactivated. Why
> > does it not do that when I have the workbook saved with a .xla extension?

>
> That's normal in 2007
> A xla is a hidden workbook and the code/menus that is in it you want to use in all
> open workbooks that is in the xla.
>
> In a normal workbook it will load the ribbonX when you activate the workbook and
> remove your changes when you deactivate it
>
>
>
> --
>
> Regards Ron de Bruin
> http://www.rondebruin.nl/tips.htm
>
>
> "RyanH" <(E-Mail Removed)> wrote in message news:BB8E3FFB-2337-49C8-AAAE-(E-Mail Removed)...
> >I have a 2007 Add-In workbook that has XML in it to add a Custon Menu Tab in
> > the Ribbon. How can I ensure that the tab is always placed last in the
> > Ribbon. For example, Home, Insert, Page Layout, ...., Developer, CUSTOM TAB
> > HERE.
> >
> > Plus, I have noticed that if I save the workbook with a .xls extension the
> > Ribbon goes back to default settings when activating another workbook and
> > back to the custom settings I have when the my workbook is reactivated. Why
> > does it not do that when I have the workbook saved with a .xla extension?
> > --
> > Cheers,
> > Ryan

>

 
Reply With Quote
 
Ron de Bruin
Guest
Posts: n/a
 
      14th Oct 2008
Why do you want to use it is a add-in ?


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"RyanH" <(E-Mail Removed)> wrote in message newsFCA441D-0E1D-4E05-86B7-(E-Mail Removed)...
> Thanks for the reply. Since I am using a Add-In workbook is there a way to
> hide the custom tab when the workbook I want to use the tab in is deactivated
> and then unhide it when the workbook is activated? If not, I will just make
> sure to test the workbook I want to use the tab in is the activeworkbook
> before any of the buttons execute there code.
> --
> Cheers,
> Ryan
>
>
> "Ron de Bruin" wrote:
>
>>
>> Hi Ryan
>>
>> Use insertAfterMso
>>
>> <tab id="MyCustomTab" label="My Tab" insertAfterMso="TabDeveloper">
>>
>>
>> > Plus, I have noticed that if I save the workbook with a .xls extension the
>> > Ribbon goes back to default settings when activating another workbook and
>> > back to the custom settings I have when the my workbook is reactivated. Why
>> > does it not do that when I have the workbook saved with a .xla extension?

>>
>> That's normal in 2007
>> A xla is a hidden workbook and the code/menus that is in it you want to use in all
>> open workbooks that is in the xla.
>>
>> In a normal workbook it will load the ribbonX when you activate the workbook and
>> remove your changes when you deactivate it
>>
>>
>>
>> --
>>
>> Regards Ron de Bruin
>> http://www.rondebruin.nl/tips.htm
>>
>>
>> "RyanH" <(E-Mail Removed)> wrote in message news:BB8E3FFB-2337-49C8-AAAE-(E-Mail Removed)...
>> >I have a 2007 Add-In workbook that has XML in it to add a Custon Menu Tab in
>> > the Ribbon. How can I ensure that the tab is always placed last in the
>> > Ribbon. For example, Home, Insert, Page Layout, ...., Developer, CUSTOM TAB
>> > HERE.
>> >
>> > Plus, I have noticed that if I save the workbook with a .xls extension the
>> > Ribbon goes back to default settings when activating another workbook and
>> > back to the custom settings I have when the my workbook is reactivated. Why
>> > does it not do that when I have the workbook saved with a .xla extension?
>> > --
>> > Cheers,
>> > Ryan

>>

 
Reply With Quote
 
Jim Rech
Guest
Posts: n/a
 
      14th Oct 2008
>>How can I ensure that the tab is always placed last in the Ribbon.
>><tab id="MyCustomTab" label="My Tab" insertAfterMso="TabDeveloper">


If you leave the insertAfterMso="TabDeveloper" out completely I believe
Excel will place your group last at the time it adds the group. The above
places the group between the Developer tab but before Add-ins if you have
that displayed. I say "at the time it adds the group" because a later
loaded workbook or add-in can have its group placed after yours so you
cannot force your to always be last.

Re changing the tab's visibility at runtime, you should be able to do that
by invalidating the ribbon with the workbook activate and deactivate events
along with using the getVisible attribute to name a procedure returning the
visible state.

--
Jim
"Ron de Bruin" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
|
| Hi Ryan
|
| Use insertAfterMso
|
| <tab id="MyCustomTab" label="My Tab" insertAfterMso="TabDeveloper">
|
|
| > Plus, I have noticed that if I save the workbook with a .xls extension
the
| > Ribbon goes back to default settings when activating another workbook
and
| > back to the custom settings I have when the my workbook is reactivated.
Why
| > does it not do that when I have the workbook saved with a .xla
extension?
|
| That's normal in 2007
| A xla is a hidden workbook and the code/menus that is in it you want to
use in all
| open workbooks that is in the xla.
|
| In a normal workbook it will load the ribbonX when you activate the
workbook and
| remove your changes when you deactivate it
|
|
|
| --
|
| Regards Ron de Bruin
| http://www.rondebruin.nl/tips.htm
|
|
| "RyanH" <(E-Mail Removed)> wrote in message
news:BB8E3FFB-2337-49C8-AAAE-(E-Mail Removed)...
| >I have a 2007 Add-In workbook that has XML in it to add a Custon Menu Tab
in
| > the Ribbon. How can I ensure that the tab is always placed last in the
| > Ribbon. For example, Home, Insert, Page Layout, ...., Developer, CUSTOM
TAB
| > HERE.
| >
| > Plus, I have noticed that if I save the workbook with a .xls extension
the
| > Ribbon goes back to default settings when activating another workbook
and
| > back to the custom settings I have when the my workbook is reactivated.
Why
| > does it not do that when I have the workbook saved with a .xla
extension?
| > --
| > Cheers,
| > Ryan

 
Reply With Quote
 
RyanH
Guest
Posts: n/a
 
      14th Oct 2008
Because this workbook is opened in 2003 as well. 2003 will not recognize the
2007 Add-In. My 2007 Add-In is only used to make changes to the ribbon when
2007 opens it. I have another add-in with 2003 that is used as a reference
which contains all the code to manipulate the data in the my workbook name
Production Schedule.

So when my Production workbook is opened in 2003 the 2003 Add-In is opened
to be used as a Reference. When 2007 opens my Production workbook in opens
the 2007 Add-In to change the Ribbon and uses 2003 Add-In as a Reference.

Are you asking, becuase you have something else in mind?
--
Cheers,
Ryan


"Ron de Bruin" wrote:

> Why do you want to use it is a add-in ?
>
>
> --
>
> Regards Ron de Bruin
> http://www.rondebruin.nl/tips.htm
>
>
> "RyanH" <(E-Mail Removed)> wrote in message newsFCA441D-0E1D-4E05-86B7-(E-Mail Removed)...
> > Thanks for the reply. Since I am using a Add-In workbook is there a way to
> > hide the custom tab when the workbook I want to use the tab in is deactivated
> > and then unhide it when the workbook is activated? If not, I will just make
> > sure to test the workbook I want to use the tab in is the activeworkbook
> > before any of the buttons execute there code.
> > --
> > Cheers,
> > Ryan
> >
> >
> > "Ron de Bruin" wrote:
> >
> >>
> >> Hi Ryan
> >>
> >> Use insertAfterMso
> >>
> >> <tab id="MyCustomTab" label="My Tab" insertAfterMso="TabDeveloper">
> >>
> >>
> >> > Plus, I have noticed that if I save the workbook with a .xls extension the
> >> > Ribbon goes back to default settings when activating another workbook and
> >> > back to the custom settings I have when the my workbook is reactivated. Why
> >> > does it not do that when I have the workbook saved with a .xla extension?
> >>
> >> That's normal in 2007
> >> A xla is a hidden workbook and the code/menus that is in it you want to use in all
> >> open workbooks that is in the xla.
> >>
> >> In a normal workbook it will load the ribbonX when you activate the workbook and
> >> remove your changes when you deactivate it
> >>
> >>
> >>
> >> --
> >>
> >> Regards Ron de Bruin
> >> http://www.rondebruin.nl/tips.htm
> >>
> >>
> >> "RyanH" <(E-Mail Removed)> wrote in message news:BB8E3FFB-2337-49C8-AAAE-(E-Mail Removed)...
> >> >I have a 2007 Add-In workbook that has XML in it to add a Custon Menu Tab in
> >> > the Ribbon. How can I ensure that the tab is always placed last in the
> >> > Ribbon. For example, Home, Insert, Page Layout, ...., Developer, CUSTOM TAB
> >> > HERE.
> >> >
> >> > Plus, I have noticed that if I save the workbook with a .xls extension the
> >> > Ribbon goes back to default settings when activating another workbook and
> >> > back to the custom settings I have when the my workbook is reactivated. Why
> >> > does it not do that when I have the workbook saved with a .xla extension?
> >> > --
> >> > Cheers,
> >> > Ryan
> >>

>

 
Reply With Quote
 
Ron de Bruin
Guest
Posts: n/a
 
      14th Oct 2008
See this page Ryan
http://www.rondebruin.nl/compatiblemenu.htm

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"RyanH" <(E-Mail Removed)> wrote in message news:93DCAFFE-C2A6-469E-BB31-(E-Mail Removed)...
> Because this workbook is opened in 2003 as well. 2003 will not recognize the
> 2007 Add-In. My 2007 Add-In is only used to make changes to the ribbon when
> 2007 opens it. I have another add-in with 2003 that is used as a reference
> which contains all the code to manipulate the data in the my workbook name
> Production Schedule.
>
> So when my Production workbook is opened in 2003 the 2003 Add-In is opened
> to be used as a Reference. When 2007 opens my Production workbook in opens
> the 2007 Add-In to change the Ribbon and uses 2003 Add-In as a Reference.
>
> Are you asking, becuase you have something else in mind?
> --
> Cheers,
> Ryan
>
>
> "Ron de Bruin" wrote:
>
>> Why do you want to use it is a add-in ?
>>
>>
>> --
>>
>> Regards Ron de Bruin
>> http://www.rondebruin.nl/tips.htm
>>
>>
>> "RyanH" <(E-Mail Removed)> wrote in message newsFCA441D-0E1D-4E05-86B7-(E-Mail Removed)...
>> > Thanks for the reply. Since I am using a Add-In workbook is there a way to
>> > hide the custom tab when the workbook I want to use the tab in is deactivated
>> > and then unhide it when the workbook is activated? If not, I will just make
>> > sure to test the workbook I want to use the tab in is the activeworkbook
>> > before any of the buttons execute there code.
>> > --
>> > Cheers,
>> > Ryan
>> >
>> >
>> > "Ron de Bruin" wrote:
>> >
>> >>
>> >> Hi Ryan
>> >>
>> >> Use insertAfterMso
>> >>
>> >> <tab id="MyCustomTab" label="My Tab" insertAfterMso="TabDeveloper">
>> >>
>> >>
>> >> > Plus, I have noticed that if I save the workbook with a .xls extension the
>> >> > Ribbon goes back to default settings when activating another workbook and
>> >> > back to the custom settings I have when the my workbook is reactivated. Why
>> >> > does it not do that when I have the workbook saved with a .xla extension?
>> >>
>> >> That's normal in 2007
>> >> A xla is a hidden workbook and the code/menus that is in it you want to use in all
>> >> open workbooks that is in the xla.
>> >>
>> >> In a normal workbook it will load the ribbonX when you activate the workbook and
>> >> remove your changes when you deactivate it
>> >>
>> >>
>> >>
>> >> --
>> >>
>> >> Regards Ron de Bruin
>> >> http://www.rondebruin.nl/tips.htm
>> >>
>> >>
>> >> "RyanH" <(E-Mail Removed)> wrote in message news:BB8E3FFB-2337-49C8-AAAE-(E-Mail Removed)...
>> >> >I have a 2007 Add-In workbook that has XML in it to add a Custon Menu Tab in
>> >> > the Ribbon. How can I ensure that the tab is always placed last in the
>> >> > Ribbon. For example, Home, Insert, Page Layout, ...., Developer, CUSTOM TAB
>> >> > HERE.
>> >> >
>> >> > Plus, I have noticed that if I save the workbook with a .xls extension the
>> >> > Ribbon goes back to default settings when activating another workbook and
>> >> > back to the custom settings I have when the my workbook is reactivated. Why
>> >> > does it not do that when I have the workbook saved with a .xla extension?
>> >> > --
>> >> > Cheers,
>> >> > Ryan
>> >>

>>

 
Reply With Quote
 
Ron de Bruin
Guest
Posts: n/a
 
      14th Oct 2008
> If you leave the insertAfterMso="TabDeveloper" out completely I believe
> Excel will place your group last at the time it adds the group.


Correct Jim

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Jim Rech" <(E-Mail Removed)> wrote in message news:(E-Mail Removed)...
>>>How can I ensure that the tab is always placed last in the Ribbon.
>>><tab id="MyCustomTab" label="My Tab" insertAfterMso="TabDeveloper">

>
> If you leave the insertAfterMso="TabDeveloper" out completely I believe
> Excel will place your group last at the time it adds the group. The above
> places the group between the Developer tab but before Add-ins if you have
> that displayed. I say "at the time it adds the group" because a later
> loaded workbook or add-in can have its group placed after yours so you
> cannot force your to always be last.
>
> Re changing the tab's visibility at runtime, you should be able to do that
> by invalidating the ribbon with the workbook activate and deactivate events
> along with using the getVisible attribute to name a procedure returning the
> visible state.
>
> --
> Jim
> "Ron de Bruin" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> |
> | Hi Ryan
> |
> | Use insertAfterMso
> |
> | <tab id="MyCustomTab" label="My Tab" insertAfterMso="TabDeveloper">
> |
> |
> | > Plus, I have noticed that if I save the workbook with a .xls extension
> the
> | > Ribbon goes back to default settings when activating another workbook
> and
> | > back to the custom settings I have when the my workbook is reactivated.
> Why
> | > does it not do that when I have the workbook saved with a .xla
> extension?
> |
> | That's normal in 2007
> | A xla is a hidden workbook and the code/menus that is in it you want to
> use in all
> | open workbooks that is in the xla.
> |
> | In a normal workbook it will load the ribbonX when you activate the
> workbook and
> | remove your changes when you deactivate it
> |
> |
> |
> | --
> |
> | Regards Ron de Bruin
> | http://www.rondebruin.nl/tips.htm
> |
> |
> | "RyanH" <(E-Mail Removed)> wrote in message
> news:BB8E3FFB-2337-49C8-AAAE-(E-Mail Removed)...
> | >I have a 2007 Add-In workbook that has XML in it to add a Custon Menu Tab
> in
> | > the Ribbon. How can I ensure that the tab is always placed last in the
> | > Ribbon. For example, Home, Insert, Page Layout, ...., Developer, CUSTOM
> TAB
> | > HERE.
> | >
> | > Plus, I have noticed that if I save the workbook with a .xls extension
> the
> | > Ribbon goes back to default settings when activating another workbook
> and
> | > back to the custom settings I have when the my workbook is reactivated.
> Why
> | > does it not do that when I have the workbook saved with a .xla
> extension?
> | > --
> | > Cheers,
> | > Ryan
>

 
Reply With Quote
 
RyanH
Guest
Posts: n/a
 
      14th Oct 2008
I am very new to XML and afraid I don't know much about it. How would I
change the tabs visiblity attribute when the workbook is activated and
deactivated.
--
Cheers,
Ryan


"Jim Rech" wrote:

> >>How can I ensure that the tab is always placed last in the Ribbon.
> >><tab id="MyCustomTab" label="My Tab" insertAfterMso="TabDeveloper">

>
> If you leave the insertAfterMso="TabDeveloper" out completely I believe
> Excel will place your group last at the time it adds the group. The above
> places the group between the Developer tab but before Add-ins if you have
> that displayed. I say "at the time it adds the group" because a later
> loaded workbook or add-in can have its group placed after yours so you
> cannot force your to always be last.
>
> Re changing the tab's visibility at runtime, you should be able to do that
> by invalidating the ribbon with the workbook activate and deactivate events
> along with using the getVisible attribute to name a procedure returning the
> visible state.
>
> --
> Jim
> "Ron de Bruin" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> |
> | Hi Ryan
> |
> | Use insertAfterMso
> |
> | <tab id="MyCustomTab" label="My Tab" insertAfterMso="TabDeveloper">
> |
> |
> | > Plus, I have noticed that if I save the workbook with a .xls extension
> the
> | > Ribbon goes back to default settings when activating another workbook
> and
> | > back to the custom settings I have when the my workbook is reactivated.
> Why
> | > does it not do that when I have the workbook saved with a .xla
> extension?
> |
> | That's normal in 2007
> | A xla is a hidden workbook and the code/menus that is in it you want to
> use in all
> | open workbooks that is in the xla.
> |
> | In a normal workbook it will load the ribbonX when you activate the
> workbook and
> | remove your changes when you deactivate it
> |
> |
> |
> | --
> |
> | Regards Ron de Bruin
> | http://www.rondebruin.nl/tips.htm
> |
> |
> | "RyanH" <(E-Mail Removed)> wrote in message
> news:BB8E3FFB-2337-49C8-AAAE-(E-Mail Removed)...
> | >I have a 2007 Add-In workbook that has XML in it to add a Custon Menu Tab
> in
> | > the Ribbon. How can I ensure that the tab is always placed last in the
> | > Ribbon. For example, Home, Insert, Page Layout, ...., Developer, CUSTOM
> TAB
> | > HERE.
> | >
> | > Plus, I have noticed that if I save the workbook with a .xls extension
> the
> | > Ribbon goes back to default settings when activating another workbook
> and
> | > back to the custom settings I have when the my workbook is reactivated.
> Why
> | > does it not do that when I have the workbook saved with a .xla
> extension?
> | > --
> | > Cheers,
> | > Ryan
>
>

 
Reply With Quote
 
Jim Rech
Guest
Posts: n/a
 
      14th Oct 2008
How to do this is "beyond the scope of a newsgroup post" I'm afraid. And I
don't have time to do a full-blown example. Can you do as you suggested
before - have the called macro make sure the right workbook is active?

--
Jim
"RyanH" <(E-Mail Removed)> wrote in message
news:CA8550BA-63AE-4723-9D35-(E-Mail Removed)...
|I am very new to XML and afraid I don't know much about it. How would I
| change the tabs visiblity attribute when the workbook is activated and
| deactivated.
| --
| Cheers,
| Ryan
|
|
| "Jim Rech" wrote:
|
| > >>How can I ensure that the tab is always placed last in the Ribbon.
| > >><tab id="MyCustomTab" label="My Tab" insertAfterMso="TabDeveloper">
| >
| > If you leave the insertAfterMso="TabDeveloper" out completely I believe
| > Excel will place your group last at the time it adds the group. The
above
| > places the group between the Developer tab but before Add-ins if you
have
| > that displayed. I say "at the time it adds the group" because a later
| > loaded workbook or add-in can have its group placed after yours so you
| > cannot force your to always be last.
| >
| > Re changing the tab's visibility at runtime, you should be able to do
that
| > by invalidating the ribbon with the workbook activate and deactivate
events
| > along with using the getVisible attribute to name a procedure returning
the
| > visible state.
| >
| > --
| > Jim
| > "Ron de Bruin" <(E-Mail Removed)> wrote in message
| > news:(E-Mail Removed)...
| > |
| > | Hi Ryan
| > |
| > | Use insertAfterMso
| > |
| > | <tab id="MyCustomTab" label="My Tab" insertAfterMso="TabDeveloper">
| > |
| > |
| > | > Plus, I have noticed that if I save the workbook with a .xls
extension
| > the
| > | > Ribbon goes back to default settings when activating another
workbook
| > and
| > | > back to the custom settings I have when the my workbook is
reactivated.
| > Why
| > | > does it not do that when I have the workbook saved with a .xla
| > extension?
| > |
| > | That's normal in 2007
| > | A xla is a hidden workbook and the code/menus that is in it you want
to
| > use in all
| > | open workbooks that is in the xla.
| > |
| > | In a normal workbook it will load the ribbonX when you activate the
| > workbook and
| > | remove your changes when you deactivate it
| > |
| > |
| > |
| > | --
| > |
| > | Regards Ron de Bruin
| > | http://www.rondebruin.nl/tips.htm
| > |
| > |
| > | "RyanH" <(E-Mail Removed)> wrote in message
| > news:BB8E3FFB-2337-49C8-AAAE-(E-Mail Removed)...
| > | >I have a 2007 Add-In workbook that has XML in it to add a Custon Menu
Tab
| > in
| > | > the Ribbon. How can I ensure that the tab is always placed last in
the
| > | > Ribbon. For example, Home, Insert, Page Layout, ...., Developer,
CUSTOM
| > TAB
| > | > HERE.
| > | >
| > | > Plus, I have noticed that if I save the workbook with a .xls
extension
| > the
| > | > Ribbon goes back to default settings when activating another
workbook
| > and
| > | > back to the custom settings I have when the my workbook is
reactivated.
| > Why
| > | > does it not do that when I have the workbook saved with a .xla
| > extension?
| > | > --
| > | > Cheers,
| > | > Ryan
| >
| >

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Ribbon and menus disappear in Excel 2007 StevenWheeler Microsoft Excel Crashes 1 22nd Apr 2009 02:52 PM
RE: Problemas con los Menus de Access 2007 (Ribbon) Dennis Microsoft Access VBA Modules 0 8th Sep 2008 08:00 PM
How can I enlarge the icons and menus on my ribbon? Susan Microsoft Word Document Management 1 6th Jul 2008 10:46 PM
Ribbon vs. Menus =?Utf-8?B?bWlmdWtoZWQ=?= Microsoft Excel Misc 4 1st Jun 2006 07:14 AM
Office 12 Ribbon Menus Steve Drake Microsoft Dot NET Framework Forms 3 28th Nov 2005 06:36 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 03:46 AM.