I have the following code in my AutoExec:
However, when I open my db the Ribbon still displays. I'm using an ADP which is why I'm not using a USysRibbons table.
Code:
Dim strRibbonName As String, strXML As String strRibbonName = "customUI" strXML = "<customUI xmlns=""http://schemas.microsoft.com/office/2006/01/customui"">" _ & "<ribbon startFromScratch=""true"" /></customUI>" Application.LoadCustomUI strRibbonName, strXML
Comment