Form display not correct in 2010

Gkirkup

Registered User.
Local time
Today, 08:03
Joined
Mar 6, 2007
Messages
628
I am converting a big application from 2003 .mdb to 2010 .accdb. The forms all display the full size of the screen, and have only an 'X' in the top right corner, not the three buttons to minimize etc.
The forms display the correct size in design view. The format settings appear to be correct.
How can I fix this and make the forms display the correct size?

Robert
 
Bob: Thanks! That worked fine.
Is there any way that I can remove the ribbon from users' copies of the database? The options along the top, that program users don't need?

Robert
 
You can create a blank Ribbon. My XML to do this is:

Code:
<customUI xmlns="[URL]http://schemas.microsoft.com/office/2006/01/customui[/URL]">
<ribbon startFromScratch="true">
</ribbon>
</customUI>
You need to create a table named USysRibbons which has two fields

RibbonName (Text)
RibbonXML (Memo)
 
Bob: Thanks. So there is no setting to just turn the ribbon off and on?

Robert
 

Users who are viewing this thread

Back
Top Bottom