Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

access 2007 customize qat

Status
Not open for further replies.

mikeba1

Programmer
Jan 2, 2005
235
GB
Is there any way to stop users customizing the qat.
I do need the qat to provide certain functions, but would like to stop users from changing it.

thanks
 
Thanks

Have bitten the bullitt and created a qat in xml, this has solved most of my problems.
 
If you could share the xml and the procedure to use, it would be helpful.
 
you have to create a table called usysribbon


then create an xml record
id- autonumber (key)
ribbonname - text
ribbonxml - memo


XML CODE (this is as far as I go with xml)

<customUI xmlns=" <ribbon startFromScratch="true">
<officeMenu>
<button idMso="FileOpenDatabase" visible="false" />
<button idMso="FileNewDatabase" visible="false" />
<button idMso="FileCloseDatabase" visible="false" />

</officeMenu>
<qat>
<documentControls>
<button idMso="FilterAdvancedByForm"/>
<button idMso="ApplyFilter"/>
<button idMso="FilterClearAllFilters"/>
<button idMso="Copy"/>
<button idMso="Paste"/>
<button idMso="PrintDialogAccess"/>
<button idMso="FindDialog"/>
<control idMso="Undo"/>
<control idMso="Redo"/>
<control idMso="ExportExcel"/>
</documentControls>
</qat>

</ribbon>
</customUI>

then tell access the name of the ribbon where it asks for it
in accessoptions currentdatabase ribbon and toolbar options

hope it helps
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top