You are here:   15

15

Do I have the option to show a custom form if the option button is clicked on Office Menu ? FAQ Link

Yes.

Create a new Ribbon XML and insert lines of code as stated in the sample below :

Sample XML: 

<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui">
   <commands>
     <command idMso= "ApplicationOptionsDialog" onAction="OnActionOptionsButton"/>
   </commands>
   <ribbon startFromScratch="false">
           <!-- Here your XML code is going on -->
   </ribbon>
</customUI>

Create the following Callback function in a standard modul:

Public Sub OnActionOptionsButton(control As IRibbonControl, ByRef cancelDefault)
    DoCmd.OpenForm "frmYourForm", , , , , acDialog
End Sub

See Access sample database "Access-Options"

Last Updates:

18.03.2021
New Download added. ...

25.10.2018
Update Site "Trusted Locations" ...

22.10.2018
New Download added. ...

08.04.2018
IDBE RibbonCreator 2016 (x86 and x64) for Office 2013 and Office 2016 - new release. ...

 

Last update: