Hello,
This is my first post to this server, Hello everyone.
We're working on a database created by my collegue in MS Access 2003. Since
some time we've moved to MS Access 2007. Now we find problems editing the
menubar. Each time we want to remove/add/alter a menu item my collegue goes
to his MS Access 2003 and changes a menu.
In 2007 the full menubar is visible under Add-Ins ribbon menu.
Normally there should be a system table USysRibbon, but it is not there.
There are only MSys* objects. How can we change the menubar directly in MS
Access 2007? Is that possible at all?
Best regards,
Remi.
|
|
0
|
|
|
|
Reply
|
Remi
|
12/14/2009 8:45:20 AM |
|
"Remi Pi" <r.pilipczuk@no.spam.vlassenroot.pl> wrote in message
news:7k3ltfwdr8bt$.quro5q2o116q.dlg@40tude.net...
> Hello,
>
> This is my first post to this server, Hello everyone.
>
> We're working on a database created by my collegue in MS Access 2003.
> Since
> some time we've moved to MS Access 2007. Now we find problems editing the
> menubar. Each time we want to remove/add/alter a menu item my collegue
> goes
> to his MS Access 2003 and changes a menu.
> In 2007 the full menubar is visible under Add-Ins ribbon menu.
>
> Normally there should be a system table USysRibbon, but it is not there.
> There are only MSys* objects. How can we change the menubar directly in MS
> Access 2007? Is that possible at all?
>
> Best regards,
> Remi.
the USysRibbon is ONLY for custom ribbons. You have to use code to
modify/create menu bars.
So, the choices you have for modifying menu bars in 2007 are quite limited.
I suggest you either;
a) use 2003 to change the menus
b) use VBA code to modify the menus
c) replace the menus with ribbons
The above choices are not ideal. However, there is no user graphical
interface in 2007 that lets you edit menus graphically.
You can continue to use menus however. In fact, you can even hide the
ribbon, and display menu bars the same way they look in previous versions.
Here is some code examples in modifying the menu bars:
http://www.accessribbon.de/en/index.php?Access_-_Ribbons:Menus___Toolbars:Toolbars
Note that for access 2010, there is a built in ribbon customizer that allows
you to modify and add buttons/groups to ribbons. However, this ribbon
customizer is for ribbons, not menu bars..
--
Albert D. Kallal (Access MVP)
Edmonton, Alberta Canada
pleaseNOOSpamKallal@msn.com
|
|
0
|
|
|
|
Reply
|
Albert
|
12/14/2009 3:41:30 PM
|
|
Dnia Mon, 14 Dec 2009 08:41:30 -0700, Albert D. Kallal napisa�(a):
> "Remi Pi" <r.pilipczuk@no.spam.vlassenroot.pl> wrote in message
> news:7k3ltfwdr8bt$.quro5q2o116q.dlg@40tude.net...
>> Hello,
>>
>> This is my first post to this server, Hello everyone.
>>
>> We're working on a database created by my collegue in MS Access 2003.
>> Since
>> some time we've moved to MS Access 2007. Now we find problems editing the
>> menubar. Each time we want to remove/add/alter a menu item my collegue
>> goes
>> to his MS Access 2003 and changes a menu.
>> In 2007 the full menubar is visible under Add-Ins ribbon menu.
>>
>> Normally there should be a system table USysRibbon, but it is not there.
>> There are only MSys* objects. How can we change the menubar directly in MS
>> Access 2007? Is that possible at all?
>>
>> Best regards,
>> Remi.
>
> the USysRibbon is ONLY for custom ribbons. You have to use code to
> modify/create menu bars.
>
> So, the choices you have for modifying menu bars in 2007 are quite limited.
> I suggest you either;
>
> a) use 2003 to change the menus
> b) use VBA code to modify the menus
> c) replace the menus with ribbons
>
> The above choices are not ideal. However, there is no user graphical
> interface in 2007 that lets you edit menus graphically.
>
> You can continue to use menus however. In fact, you can even hide the
> ribbon, and display menu bars the same way they look in previous versions.
>
> Here is some code examples in modifying the menu bars:
>
> http://www.accessribbon.de/en/index.php?Access_-_Ribbons:Menus___Toolbars:Toolbars
>
> Note that for access 2010, there is a built in ribbon customizer that allows
> you to modify and add buttons/groups to ribbons. However, this ribbon
> customizer is for ribbons, not menu bars..
Thank You very much for the comprehensive answer.
We indeed have hidden ribbon and display menus only, when the user logs in
standard way (witho no SHIFT key pressed). When we log in with the SHIFT
key pressed, it gives us a nice admin interface to the database (which is
actually an user interface to real MS SQL database).
I'm not sure is that fine to use only the ribbons, since few of our users
still uses Office 2003. Won't it be a problem for 2003 users if we replace
menus to ribbons?
On Your link I found examples how to create new ribbons - that's useful,
thanks. But is there any way to get VBA code for current menus? Maybe from
2003 version, so we can easly copy/paste this code into 2007 version.
Thanks in advance,
Remi.
|
|
0
|
|
|
|
Reply
|
Remi
|
12/14/2009 4:23:21 PM
|
|
"Remi Pi" <r.pilipczuk@no.spam.vlassenroot.pl> wrote in message
news:128vgiqpi8977$.1hf5wszbq76jw$.dlg@40tude.net...
> I'm not sure is that fine to use only the ribbons, since few of our users
> still uses Office 2003. Won't it be a problem for 2003 users if we replace
> menus to ribbons?
>
The above is correct. If you have a mix of 2003, and 2007 users, then you
have to stick to using menus.
> On Your link I found examples how to create new ribbons - that's useful,
> thanks. But is there any way to get VBA code for current menus? Maybe from
> 2003 version, so we can easly copy/paste this code into 2007 version.
>
Just like a form in design mode, there is no code for that form (just a
bunch of numbers that hold the position of a text box on the screen...code
reads that information and displays the text boxes...so, there not code, but
only saving values that represent the form.
The same occurs for the menus. There is not code, but only entries in a
object that has those menu bars...
It is possible that the original developer did use code to create the custom
menu bars, but you would be easily able to see that code in the application
now. So, the developer might be using code now, but you would easily see
that code in the VBA code editor for a form or in the application startup
code that runs. So, I would just check/look at the startup code that runs
when the application starts up..if there is no menu bar code, then the
developers used the "customize" menus option and did not write code. Both
approaches were common, but if no code was used to create the menu bars,
then again for 2007 you not be able to use/modify that code because no code
was used.
So, to modify existing menu bars, or add, or remove buttons...you have to
resort back to using VBA code to make those changes. So, there is no
"hidden" code for a form or menu bars...you have to use the design tools to
modify that particular object in question.
For 2007, to modify menu bars you have no other choice but to write code....
For example, you can write some VBA code to open a form up in design mode,
and add or remove a text box, however it is far more easy to use the form's
design tools and make the changes with the mouse in form's design mode.
In 2007, the menu bar design tools don't exist anymore, so you have to write
code to make changes to menu bars.
Since you supporting both 2007, and 2003, you really have to stick to the
lowest common system for development. There is tons of features in 2007 that
2003 does not have yet. (the ribbon is only one of many features new to
2007).
I think the best solution here would be to do all development in 2003 since
that is the lowest common system that you can expect users to have.
While going forward is easy for for most software systems, going back is
difficult.
--
Albert D. Kallal (Access MVP)
Edmonton, Alberta Canada
pleaseNOOSpamKallal@msn.com
|
|
0
|
|
|
|
Reply
|
Albert
|
12/14/2009 5:05:45 PM
|
|
Dnia Mon, 14 Dec 2009 10:05:45 -0700, Albert D. Kallal napisa�(a):
> "Remi Pi" <r.pilipczuk@no.spam.vlassenroot.pl> wrote in message
> news:128vgiqpi8977$.1hf5wszbq76jw$.dlg@40tude.net...
>
>> I'm not sure is that fine to use only the ribbons, since few of our users
>> still uses Office 2003. Won't it be a problem for 2003 users if we replace
>> menus to ribbons?
>>
>
> The above is correct. If you have a mix of 2003, and 2007 users, then you
> have to stick to using menus.
>
>> On Your link I found examples how to create new ribbons - that's useful,
>> thanks. But is there any way to get VBA code for current menus? Maybe from
>> 2003 version, so we can easly copy/paste this code into 2007 version.
>>
>
> Just like a form in design mode, there is no code for that form (just a
> bunch of numbers that hold the position of a text box on the screen...code
> reads that information and displays the text boxes...so, there not code, but
> only saving values that represent the form.
>
> The same occurs for the menus. There is not code, but only entries in a
> object that has those menu bars...
>
> It is possible that the original developer did use code to create the custom
> menu bars, but you would be easily able to see that code in the application
> now. So, the developer might be using code now, but you would easily see
> that code in the VBA code editor for a form or in the application startup
> code that runs. So, I would just check/look at the startup code that runs
> when the application starts up..if there is no menu bar code, then the
> developers used the "customize" menus option and did not write code. Both
> approaches were common, but if no code was used to create the menu bars,
> then again for 2007 you not be able to use/modify that code because no code
> was used.
>
> So, to modify existing menu bars, or add, or remove buttons...you have to
> resort back to using VBA code to make those changes. So, there is no
> "hidden" code for a form or menu bars...you have to use the design tools to
> modify that particular object in question.
>
> For 2007, to modify menu bars you have no other choice but to write code....
>
> For example, you can write some VBA code to open a form up in design mode,
> and add or remove a text box, however it is far more easy to use the form's
> design tools and make the changes with the mouse in form's design mode.
>
> In 2007, the menu bar design tools don't exist anymore, so you have to write
> code to make changes to menu bars.
>
> Since you supporting both 2007, and 2003, you really have to stick to the
> lowest common system for development. There is tons of features in 2007 that
> 2003 does not have yet. (the ribbon is only one of many features new to
> 2007).
>
> I think the best solution here would be to do all development in 2003 since
> that is the lowest common system that you can expect users to have.
>
> While going forward is easy for for most software systems, going back is
> difficult.
Thank You for Your answers, we're probably going to switch to Access 2007
completely and convert menus to ribbons.
--
Best regards,
Remi Pi
|
|
1
|
|
|
|
Reply
|
Remi
|
12/15/2009 7:19:01 AM
|
|
|
4 Replies
1628 Views
(page loaded in 0.137 seconds)
Similiar Articles: [Access 2007] How to edit custom menubar created in Access2003 ...Hello, This is my first post to this server, Hello everyone. We're working on a database created by my collegue in MS Access 2003. Since some ... Custom Menu Bar in Access 2007 - microsoft.public.access ...[Access 2007] How to edit custom menubar created in Access2003 ... How to Create a Custom Menu Bar for Access 2007 | eHow.com How to Create a Custom Menu Bar for Access 2007. Access2003 - opening "menu bar" - microsoft.public ...[Access 2007] How to edit custom menubar created in Access2003 ... How to: Use Existing Custom Menus and Toolbars [Access 2007 ..... and replaced the default menu bar in a ... How to hide Menu Bar in Access 2007? - microsoft.public.access ...[Access 2007] How to edit custom menubar created in Access2003 ... How to hide Menu Bar in Access 2007? - microsoft.public.access ... How to hide Menu Bar in Access 2007 ... Access 2007-Create Custom Menu - microsoft.public.access ...[Access 2007] How to edit custom menubar created in Access2003 ... How to Create a Custom Menu Bar for Access 2007 | eHow.com How to Create a Custom Menu Bar for Access 2007. Edit Hyperlink disabled using Custom Shortcut Menu - microsoft ...[Access 2007] How to edit custom menubar created in Access2003 ... Edit Hyperlink disabled using Custom Shortcut Menu - microsoft ... [Access 2007] How to edit custom ... Problems with Edit Hyperlink using Custom Shortcut Menu ...[Access 2007] How to edit custom menubar created in Access2003 ... Now we find problems editing the >> menubar. Each time we want ... Edit Hyperlink disabled using Custom ... How to edit a Shortcut Menu Bar - microsoft.public.access.forms ...How to edit a Shortcut Menu Bar - microsoft.public.access.forms ... [Access 2007] How to edit custom menubar created in Access2003 ... How to edit a Shortcut Menu Bar ... Custom categories in Navigation Pane - Access 2007 - microsoft ...... the ability to create custom categories? This is a converted Access2003 ... that I can change to ... question: Custom categories in Navigation Pane - Access 2007, created at ... Access 2003 Menu Bar Hide/Unhide - microsoft.public.access ...... Access 2007? - microsoft.public.access ..... options disabled for the Menu Bar and Shortcut Menu Bar ... [Access 2007] How to edit custom menubar created in Access2003 ... [Access 2007] How to edit custom menubar created in Access2003 ...Hello, This is my first post to this server, Hello everyone. We're working on a database created by my collegue in MS Access 2003. Since some time we ha [Access 2007] How to edit custom menubar created in Access2003?Hello, This is my first post to this server, Hello everyone. We're working on a database created by my collegue in MS Access 2003. Since some time we've moved to MS ... [Access 2007] How to edit custom menubar created in Access2003?[Access 2007] How to edit custom menubar created in Access2003? - answer - Hello, This is my first post to this server, Hello everyone. We're working on a database ... How to: Use Existing Custom Menus and Toolbars [Access 2007 ...... Access 2003 and in Access 2007. To follow these steps, you must have a database created in an earlier version of Access, and that database must contain a custom menu bar. How to Create a Custom Menu Bar for Access 2007 | eHow.comMicrosoft Word Software; Word 2007; How to Create a Custom Menu Bar for Access 2007 ... How to Create and Edit Forms in Access 2007. A form in Access 2007 is a database ... 7/23/2012 6:58:07 AM
|