Well, far as I know has no control separators with attributes getVisible, so we can change. In tests I did on the 2013 version was also not possible to change the separators.
I suggest disabling (getEnabled) instead of hiding the buttons.
Hi
The link below is an excellent example available.
http://www.ribbon01.com/downloads.asp
It used the tag "Tab" to store the values in the languages. Example of a button:
<button
id = "btSuppliers"
imageMso = "DistributionListSelectMembers"
getLabel="fncGetLabel"
onAction =...
Hi Catalina
is possible to clean the entire contents of the File Tab
Add your personalized ribbon, part backstage:
...
</ribbon>
<!-- *** BACKSTAGE ***-->
<backstage>
<button idMso="FileSave" visible="false"/>
<button idMso="SaveObjectAs" visible="false"/>
<button...
Hi
It has a video on the website below, which reinforces the explanation of his friend Lagbolt
http://www.ribbons-access.com/ms-access/ribbon-creator-builder-and-editor-part-3.asp#inicio
..
Hi
Sub TestInputBox()
Dim x As String
x = InputBox("Please enter the new production year", "Enter Production Year", Format(Date, "yyyy") + 1)
If StrPtr(x) = 0 Then
MsgBox "You cancel !"
End If
End sub
Put the DoCmd.ShowToolbar "Ribbon", acToolbarNo command AutoExec macro that will lock the ribbon opening the application.
Or upload a ribbon in the system table USysRibbons with the following XML:
<customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui">
<!-- *** TAG COMMANDS...
This site has made an application in Access to create ribbons at high speed. What pleased me most are the codes offered pre assembled.
http://www.ribbons-access.com
..