ش | ی | د | س | چ | پ | ج |
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
tabs
"TabHomeAccess"
tabs
ribbon
backstage : button & Tab
"FileSaveAsCurrentFileFormat"
"FileOpen" visible="false"
"FileCloseDatabase"
"TabInfo"
"FileSave"
"TabPrint"
"TabHelp"
"ApplicationOptionsDialog"
DoCmd.ShowToolbar "Ribbon", acToolbarNo
DoCmd.NavigateTo("acNavigationCategoryObjectType")'select the navigation pange'hide the selected objectDoCmd.RunCommand(acCmdWindowHide)
Public Function CustomRibbon()
Dim customXML As String
customXML = "<customUI xmlns=""http://schemas.microsoft.com/office" _
& "/2009/07/customui"">" _
& " <ribbon startFromScratch=""false"">" _
& " <tabs>" _
& " <tab idMso=""TabHomeAccess"" visible=""false"" />" _
& " </tabs>" _
& " </ribbon>" _
& "</customUI>"
Application.LoadCustomUI "HideHome", customXML
End Function