I am using MS Office Access 2007 with Ribbon via USysRibbons.RibbonXML How to set "CustomPicturePath" entry relative? - using embedded resources "imageMso"? - programming Me.RibbonXml.value = "..." in Form_Load? Where are the resources of Access "imageMso" on PC? Example with absolute CustomPicturePath: ---------------------------------------- <customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui" onLoad="OnRibbonLoad" loadImage="LoadImages"> <commands> <command idMso="Help" enabled="true"/> <command idMso="WindowClose" enabled="true"/> <command idMso="WindowRestore" enabled="true"/> <command idMso="WindowMinimize" enabled="true"/> </commands> <ribbon startFromScratch="true"> <tabs> <tab id="tabHelp" label="Help"> <group id="grpHelp" label="Help"> <button id="btnHelp" size="normal" label="Help" getImage="GetImages" tag="RibbonName:=;inMenu:=;CustomPicture:=Info16.ico;CustomPicturePath:= C:\prj\test\graphic\" onAction="OnActionButton" getVisible="GetVisible" getEnabled="GetEnabled" /> </group> </tab> </tabs> </ribbon> </customUI> Roman *** Sent via Developersdex http://www.developersdex.com ***