Custom toolbar does not work after migrating from Access 2003 to 2

  • Thread starter Thread starter alena85
  • Start date Start date
A

alena85

In Access 2003 we created a custom toolbar which is get displayed when you
open one of the forms. During the migrating from 2003 to 2007 we converted
the batabase and when we try to open the form if gives error: Microsotf
Office Access can not find the toolbar "name of the toolbar". I can not find
anything related with custom toolbars in Access 2007 and I don't know what to
do with proble. Is there anything functionality in Access 2007 for custom
toolbars?

Thanks in advance
 
alena85 said:
In Access 2003 we created a custom toolbar which is get displayed when you
open one of the forms. During the migrating from 2003 to 2007 we converted
the batabase and when we try to open the form if gives error: Microsotf
Office Access can not find the toolbar "name of the toolbar".

My custom toolbars work in A2K7, even when the database is converted to
an accdb file. I use this code to show the custom toolbar in a form's
open event:

Application.CommandBars("CustomToolbar").Visible = True

My guess is that your toolbar didn't get included in the new file when
it was converted to accdb format. Have you tried opening the original
mdb file in A2K7? Does the custom toolbar show in the Add-ins tab when
the form opens?

You could try converting the original mdb file again and see if the
toolbar is missing in the newly converted file.
 
Back
Top