Missing table USysRibbon

TWS

New member
Local time
Today, 01:09
Joined
Nov 25, 2021
Messages
2
Does anyone know what has happened to the table USysRibbon
I created this table and a ribbon menu system which all works fine, on a previous version of Access
(On the previous version I also created the vba code associated with the ribbon)
I'm now using the latest version of Access 365 and cannot find the table USysRibbon or the code used to run the ribbon. The ribbon I created is available if I choose the Add-Ins menu, so it all works fine, I just cannot edit the ribbon xml stored in USysRibbon or the VBA code, it seems to have vanished, yet the ribbon still works?
Any help would be greatly appreciated, thanks in advance
Tom
 
Welcome to the forums! We are the most active Microsoft Access community on the internet by far, with posts going back over 20 years!

To get started, I highly recommend you read the post below. It contains important information for all new users to this forum.

https://www.access-programmers.co.uk/forums/threads/new-member-read-me-first.223250/

We look forward to having you around here, learning stuff and having fun!
 
tables starting names with Msys and Usys are treated as system tables.
maybe it is hidden.
 
USysRibbons acts as a user created system table and may also be hidden.
Tick show system objects & show hidden objects in Navigation Options.

If it still doesn't appear run this query and let me know the Flags value for the table
Code:
SELECT MSysObjects.Name, MSysObjects.Type, MSysObjects.Flags
FROM MSysObjects
WHERE (((MSysObjects.Name)="USysRibbons") AND ((MSysObjects.Type)=1));
 
Thanks for your replies, I've tried all the above though
And just to prove the table is not there I created a new table called USysRibbons which it let me do. Hence I know the table is not there
I also looked in MSysObjects but nothing there!
Thanks again
 

Users who are viewing this thread

Back
Top Bottom