Click here to Skip to main content
15,909,656 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi! I was trying to customize my ribbon too in ms access 2007, but i accidentally misspelled some XML code and got an error, i had to delete USysRibbons table and reset previous ribbon, then i made another USysRibbons table and wrote some xml code in RibbonXml column. But funny enough is I still get the same error even after reseting the ribbon and restarting ms access. what could be the problem? how can I solve this problem and get rid of this error?
here is the error msg i got,
Error Code 0x80004005
Unknown Namespace:http://schemas.microsoft.com/office/2006/01/customUI
Element: CustomUI
Posted
Updated 3-Oct-13 23:35pm
v2

1 solution

 
Share this answer
 
Comments
WhiteTulip 4-Oct-13 6:07am    
thanx alot, i'v got an answer from the links;
The problem is that when you copy and paste the code, from the referenced article or the Access 2007/2010 help file, the namespace URL contains an added space where the line break was on the page.

Look close:

"Error Code 0x80004005, Unknown Namespace: http://schemas.microsoft.com /office/2006/01/customui"

Notice the space between the 'm' in .com and '/' above. Remove the space so the namespace is like so:

http://schemas.microsoft.com/office/2006/01/customui

Do that and you will get no error and the Custom Tab will work as indicated.

To prevent this from happening what you could do is create a Form for USysRibbons table sizing the XML Memo field on the form large enough so you can see what's going on. I am surprised the knowledge base article did not have a step for that.

Hope that sorts it out for anyone that may find this error after following the steps of the referenced article.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900