Thursday, March 26, 2009
Along with Windows XP and Windows Server 2003 SP1, Microsoft is ending mainstream (free) support for Office 2003 on April 14, 2009. Full details.
Strange when you consider WinXP Home is still being pre-loaded on most new netbooks. I would think also that Access 2003 is still the version of choice for Office developers.
Tuesday, September 16, 2008
Hot fixes are now available for the following Microsoft Access issues:
Access 2003
- An Access 2003 project (.adp) stops responding when in table Datasheet view, you delete all child rows from a parent row and then delete the parent row. This issue applies only to an Access 2003 project.
- A database in .mdb format in Access 2003 SP3 stops responding when you try to delete a parent record from a table in Datasheet view and the Datasheet view uses a sub-datasheet that is expanded to show the related child records.
http://support.microsoft.com/kb/956722
Access 2007
- In Access 2007, you create a query that does not contain a parameter. When you export the query to a Microsoft Office Excel Worksheet, the Enter Parameter Value dialog box opens.
- When you open a chart object in Access 2007 on a computer that is running Windows Vista or Windows Server 2008, you see a blank chart.
- After you upgrade Access 2003 to Access 2007, operations on existing forms have slow performance.
- You cannot use the SetValue macro in the click events of a Button control to set the Locked property of a Check Box control in Access 2007.
- You have a printer that has a staple feature. When you print an object in multiple copies in Access 2007, all the copies are stapled as one unit. However, you expect that each copy is stapled individually.
Monday, May 12, 2008

The most challenging issue for Access users and developers when upgrading to Access 2007 is the radical shift from CommandBars to the RibbonBar paradigm.
In this outline I will introduce the operation of the Ribbon in Access 2007, provide some guidance on customisation, and point you to various tools and on-line resources to assist your efforts at Ribbon customization.
Getting Started:- Download and install my Access Ribbon Switchboard Database demo database.
- Start Access 2007. Open the Access Ribbon Switchboard Database using the {SHIFT} key.
- Click the Microsoft Office Button, click Access Options, and then click the Advanced tab.
- In the General section, select the option Show add-in user interface errors, when debugging a RibbonBar.
- Click OK to close the Access Options dialog box.
- Right-click the Navigation pane. Point to Navigation Options, and then click Show System Objects. Click OK.
Note: The Access system tables appear in the Navigation
pane. In the Demo Database the system table, USysRibbons,
each record contains the XML for each custom Ribbon in the
database. - Click the Microsoft Office Button, and then click Access Options.
- Click the Current Database tab, in the Navigation Pane and Ribbon and Toolbar Options sections, you will see that the following option settings hide the Database Window, the Navigation Pane, and the Full Menus, and set the custom ribbon, Main, as the StartUp Ribbon Bar:
- Click OK to close the Access Options dialog.
- Close the Demo Database.
Re-open the Demo Database without using the {SHIFT} key.
- The Ribbon UI displays the Main Ribbon Custom Tab:
Note: You use a Ribbon from the USysRibbons table to
supply the UI for a specific form or report by setting the RibbonName
property to the name of the Ribbon record in USysRibbons table.
The ribbon definition is a simple XML file and can be easily created in any text editor, but if you use the free Microsoft Visual Web Developer 2005 Express Edition (VWD), you can get IntelliSense for your code. You can point it at the custom ribbon schema at http://schemas.microsoft.com/office/2006/01/customui and VWD should pick up the correct file, which is called customUI.xsd. You can download the file from http://officeblogs.net/UI/customUI.xsd. This enables VWD to provide type-ahead IntelliSense for correct ribbon xml:

The contents of the XML file are:
- customUI - this is the top level element for a custom ribbon.
- ribbon - defines the ribbon itself. Set the startFromScratch attribute = "true" to create a new blank ribbon. If this attribute is omitted or left blank, the custom ribbon will merge with the existing Access ribbons.
- tab - creates a new tab in the ribbon
- group - creates a group. These are used to logically group controls in the ribbon.
- id - unique name of a control in the ribbon label - static text displayed with a control
- button - similar to a command button. Use the onAction attribute to specify the name of a macro in the Ribbon macro in the Demo database which will be called when the button is clicked.
- dropDown - creates a dropdown list that cannot be updated. To create a drop down that the user can type in, use a comboBox control instead.
- imageMSO - specifies the name of a built-in image control in Office 2007 that can be used as in icon in your ribbon. You can find the Image name or ControlID by hovering your mouse over a control image in the Customize the Quick Access Toolbar dialog, and reading the screentip for the control image. For example, the ControlID for the Form icon image is CreateForm:
On aadconsulting.com I provide for free download two tools that will help you to debug the XML for your custom ribbon bars:
These freeware tools providing advanced Office 2007 Ribbon XML file review features. Open any Office 2007 Ribbon XML file in the XML File Reviewer to review an Office Ribbon's full menu hierarchy in a tree-view with all control attributes detailed in an adjacent panel. The Access 2007 USysRibbons Add-In reviews and previews the custom Ribbons in the USysRibbons table of an Access 2007 database. Extensive reference resources are incorporated into the GUI's of both products. Both tools require Access 2007.
Update 9 June 2008: Check out the Office 2007 RibbonCreator WYSYWIG tool from http://www.ribboncreator.de/en/More Information:
- Access 2007 Ribbon Attributes
- Access 2007 Ribbon Class
- Customizing the New Access UI
- Extend The 2007 Office System With Your Own Ribbon Tabs And Controls
- Office RibbonX API- Extend The 2007 Office System With Your Own Ribbon Tabs And Controls
- Ribbon Extensibility in Access 2007
- Office Custom UI Editor
- Customize the Office (2007) Ribbon UI for Developers (Part 1)
- Customize the Office (2007) Ribbon UI for Developers (Part 2)
- Customize the Office (2007) Ribbon UI for Developers (Part 3)
- Access Freak Access 2007 Tutorials
- AccessRibbon.com
- Ribbon Customizer
Friday, December 28, 2007
The Access 2003 Post-Service Pack 3 Hotfix Package (18-Dec-07) fixes issues that may arise in Access 2003 after installing SP3.