Link to home
Start Free TrialLog in
Avatar of Hankwembo Christopher,FCCA,FZICA,CIA,MAAT,B.A.Sc
Hankwembo Christopher,FCCA,FZICA,CIA,MAAT,B.A.ScFlag for Zambia

asked on

How to insert images on an Ms Access Ribbon

Having done a ribbon from scratch and all is working properly without a single issue, now is there a way to get some un used images within Ms access to attach to the buttons on the ribbon for example like using commands imageMso= . I still think somewhere there could be some images that can help explain what the button is all about, I will appreciate any help on this. In simple terms where can I find this Looking up an icon’s imageMso with imageMso_Galleries.accdb????????????????


Regards

Chris
Avatar of Fabrice Lambert
Fabrice Lambert
Flag of France image

Wich tools are you using to create your ribbons ?

There are graphic / WYSIWYG tools available on the internet,
such as Ribbon Creator: http://www.ribboncreator2016.de/en/
or ribbon wizard tool: http://arkham46.developpez.com/articles/office/assistant-ruban/ (french site, but the application is translated to english)
Avatar of Hankwembo Christopher,FCCA,FZICA,CIA,MAAT,B.A.Sc

ASKER

I'm not using any tool at all , I have only created a system table and then use an XML codes to drive the ribbon , example


1<?xml version=“1.0” encoding=“utf-8”?>
2 <!-- This is a comment in the ribbon’s XML -->
3 <customUI xmlns=“http://schemas.microsoft.com/office
/2006/01/customui” onLoad=“onRibbonLoad”>
4 <ribbon startFromScratch=“true”>
5 <tabs>
6 <tab id=“tab1” ...
7 <group id=“group1” ... >
8 ... Controls go here ...
9 </group>
10 </tab>
11 <tab id=“tab2” ...
12 <group id=“group2” ... >
13 ... Controls go here ...
14 </group>
15.. Repeat Groups ...
16 </tab>
17 ... Repeat Tabs ...
18 </tabs>
19 </ribbon>
20 </customUI>

As you can see above the code is very simple to use


Regards
Chris
I recommend using one of the tools I linked in my previous post.
They're intuitive, are less error prone, and you won't have to dig trough (heavy) documentation.
Plus they work for both MS Access and MS Excel.

Give it a try.
Well I think I will stick to what I have , more over Microsoft provided error correction tools specifically for that, within access as long as it is ticked it will always direct straight where the error is. I do not like using other people's tools which I do not fully understand , that is part of my tenth commandments.

" thou shall not use other peoples tool if you have no proper clue"

However, your advice was good , it is just that I'm prefer doing programming from scratching not copying from others

Regards

Chris
ASKER CERTIFIED SOLUTION
Avatar of John Tsioumpris
John Tsioumpris
Flag of Greece image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial