In Access 2007 I used a software called RibbonCustomizerV1.1 to build my own Ribbon. My Ribbon is still working but the customizer software don't work under Access 2010. Now I want to add a Delete Record button to the Ribbon but can't find the solution to do this. Hope someone can tell me how this can be done or directly give me the xml code I need to insert a Delete Record button before the Zoom Group in my Ribbon. XML Below. Appreciate any tips or hint.
<customUI xmlns="
http://schemas.microsoft.com/office/2009/07/customui">
<ribbon startFromScratch="true">
<tabs>
<tab id="CustomTab1761243499" label="Rett23">
<group id="CustomGroup1805135207"
label="Rett23">
<button id="RunMacroFirmaValg" label="Firmavalg" imageMso="DatabaseCopyData
baseFile" size="large" onAction="FirmaValg" supertip="Endre tilkobling til firma."/>
<separator id="CustomSeparator1723290
410" />
<button id="RunMacroHovedmeny" label="Hovedmeny" imageMso="ConvertToSmartAr
t" size="large" onAction="Hovedmeny" supertip="Åpne hovedmeny."/>
</group>
<group id="CustomGroup954520725" label="Utskrift">
<button idMso="FilePrintQuick" size="large" />
<separator id="CustomSeparator1884859
796" />
<button idMso="PrintDialogAccess" />
<button idMso="PageSetupDialog" imageMso="PageSetupPageDia
log"/>
<button idMso="FilePrintPreview" />
<separator id="CustomSeparator6422552
19" />
<button idMso="PrintPreviewClose" size="large" />
</group>
<group id="CustomGroup825815353" label="Zoom">
<splitButton idMso="PrintPreviewZoomMen
u" size="large" />
<toggleButton idMso="ZoomOnePage" />
<toggleButton idMso="PrintPreviewZoomTwo
Pages" />
<menu idMso="PrintPreviewMultipl
ePagesMenu
" />
</group>
<group id="CustomGroup121774283" label="Totaler">
<toggleButton idMso="RecordsTotals" size="large" />
</group>
<group idMso="GroupSortAndFilter"
/>
<group id="CustomGroup1460827025"
label="Eksporter">
<button idMso="ExportSavedExports"
size="large" />
<separator id="CustomSeparator1115073
280" />
<button idMso="ExportExcel" size="large" />
<separator id="CustomSeparator1090675
300" />
<button idMso="ExportTextFile" />
<button idMso="ExportWord" />
</group>
</tab>
</tabs>
</ribbon>
<backstage>
<button idMso="FileSave" visible="false"/>
<button idMso="FileSaveAs" visible="false"/>
<button idMso="FileOpen" visible="false"/>
<button idMso="FileClose" visible="false"/>
<button idMso="ApplicationOptionsD
ialog" visible="false"/>
<button idMso="FileExit" visible="false"/>
<tab idMso="TabInfo" visible="false"/>
<tab idMso="TabRecent" visible="false"/>
<tab idMso="TabNew" visible="false"/>
<tab idMso="TabPrint" visible="false"/>
<tab idMso="TabShare" visible="false"/>
<tab idMso="TabHelp" visible="false"/>
</backstage>
</customUI>
Open in new window