Posts Tagged ribbon
Adding custom pane to the ribbon in Microsoft Word 2007 using OpenXML SDK 2.0 and VBA
Posted by Ashish Gupta in Office Development on January 12, 2011
Source code
In the last article we looked at how we add ribbon to a word document, how do we add controls to the ribbon and how do we provide interactivity to the ribbon controls and our tab looked like this:-
However, what if we have more links or more contacts (which is indeed is the case).
Looks clumsy, isn’t it? Also, it would get clumsier if we have more links and contacts. So what If we have something like this:-
Notice the little downward arrow at the right corner of each group. Clicking each would open a pane showing all the links/email addresses. Again clicking any link/email address in the custom pane would insert the link/email in the document. This way we show very few things to the user (thereby not making the ribbon clumsy) and If user wants to see more, he opens the pane to see more. This is very similar to the “Font” group in the “Home” tab.
This time we will make changes to the existing solution and following are the changes:-
a) Prepare the list of hyperlinks and email addresses to be shown to the user in the custom pane.
b) Creating the custom panes
c) Adding data to the custom panes
d) Creating that (dialog launcher) button (the button when when clicked will open the custom pane)
e) Add interactivity for the custom pane.
a) Prepare the list of hyperlinks and email addresses to be shown to the user in the custom pane :-
One way we can add the list of hyperlinks and the email addresses to the document is to add them as XML fragments (also called “CustomXmlParts”). Following is how we do it:-
i) Create XML for the list we want to show in the pane. Data for this XML can also come from the database.
ii) Add the XML to the document as CustomXmlPart
AddCustomXmlPartsToDocument():-
149-150 – Delete all the existing CustomXMLParts from the document.
152-153 – Add the TextHyperlinks XML to the document as CustomXMLPart by calling AddCustomXmlPart()
155-156 – Add the EmailLinks XML to the document as CustomXMLPart by calling AddCustomXmlPart()
iii) Add the call to AddCustomXmlPartsToDocument() to the AddRibbonToDocument()
At this point of time if we run the application, the word document does not contain anything visiblely different in the Microsoft word. However, If you zip and unzip it, you should see the custom XML parts as separate files in the zipped file.
There must be a way to give a proper name to the CustomXMLPart. I need to see that as well. That, however is not important for this example.
b) Creating the custom panes :-
We need two custom panes. One for the hyperlinks and other for the email addresses.
Open the “TheDocumentWithMacros.docm” and open the developer tab. Add two “User Forms”
In each “User Form”, add a listbox. My project explorer looks like this:-
“EmailLinksPane” user form contains a listbox with name “lstTextHyperlinks” and “TextHyperlinksPane” user form contains a listbox named “lstEmailLinks”.
Remember we created these user forms in the “TheDocumentWithMacro” and the all the user forms and the associated controls (listbox) will get copied to the document just like the macros get copied.
c) Adding data to the custom panes:-
We need to add data to the custom panes when the ribbon loads. CustomIUI XML provide a onLoad event on the ribbon element. (not showing whole of XML below)
That “RibbonLoad” is a VBA subroutine. We can get the customXMLParts from the document and put them in global variables. When the user clicks on the button, we fill the listboxes with the corresponding global variable. Following
is a dialogbox launcher. Following is the modified ribbon XML with added part highlighted:-
At this point of time if we run the application, we should see the button () for both the links and the contacts group.
e) Adding interactivity for the custom pane :-
Notice the dialogbox launcher has a button which has a action handler for onAction. In that action handler, we will load the listbox of the corresponding user form with the global variable created on ribbon onload and show the user form to the user.
At this point of time if we run the application, we should be able to show/hide the hyperlinks/email panes from the document.
User should also be able to insert the hyperlinks/email from the custom pane. For that, we need to add the code in the listbox click event which will call the same function which is called when you click a visible button which is right on the ribbon.
This is for the hyperlinks custom pane list-
This is for the emails custom pane list:-
Now If you click on any hyperlink/email item in the corresponding listbox, the hyperlink/email will be inserted in the document.
Customizing Ribbon in Office 2007 using Open Office XML and VBA
Posted by Ashish Gupta in Office Development on January 11, 2011
Code for this article can be downloaded from here.
Ribbon:-
From http://office.microsoft.com/en-gb/help/use-the-ribbon-HA010089895.aspx :-“The Ribbon is designed to help you quickly find the commands that you need to complete a task. Commands are organized in logical groups, which are collected together under tabs. Each tab relates to a type of activity, such as writing or laying out a page. To reduce clutter, some tabs are shown only when needed. For example, the Picture Tools tab is shown only when a picture is selected.”
What to expect from this article:-
At the end of this article you should be able to customize the ribbon.
We will add a tab named “My Zone” containing two groups, “My links” and “My Contacts” containing your web site links and email addresses of your contacts.
When you click on any of the “links” in the “My Links” group, that link will get added to the document at the current position of the cursor.
Ribbon XML:-
From http://msdn.microsoft.com/en-us/library/aa942866.aspx:-
“The Ribbon (XML) item enables you to customize a Ribbon by using XML. Use the Ribbon (XML) item if you want to customize the Ribbon in a way that is not supported by the Ribbon (Visual Designer) item”
Example RibbonXML:-
<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui" onLoad="RibbonLoad"> <ribbon> <tabs> <tab id="tabMyZone" label="My Zone"> <group id="grpLinks" label="My links"> <button id="Google" label="Google" tag="http://www.google.com"/> <button id="Facebook" label="Facebook" tag="http://www.facebook.com"/> <button id="Gmail" label="Gmail" tag="http://www.gmail.com"/> </group> <group id="grpEmailAddresses" label="My Contacts"> <button id="e1" label="Ashish Gupta" tag="ashish.kuber@wipro.com"/> <button id="e2" label="Sachin Tendulkar" tag="sachinrt@yahoo.com"/> <button id="e3" label="James Hetfield" tag="James.Hetfield@metallica.com"/> </group> </tab> </tabs> </ribbon> </customUI>
How to add RibbonXML(CustomUI XML) to the word using OpenXML SDK
Pre-requisite :- Open XML SDK 2.0 which can be downloaded from here. (Download the OpenXMLSDKv2.msi which is about 4 MB in size)
Additional tools :-
a) The schema for ribbon XML which can be downloaded from here.
b) Custom UI Editor which allows you to add a custom UI part to a document. This can be downloaded from here.
Lets Start….
Create a console application and add a empty word document to it. The document should be macro-enabled (with .docm) extension. Add the Xml for the Ribbon as well. My solution explorer looks like this :-
For the purpose of the example in this document we will have a Ribbon XML created already and we would put the same into an existing word document on run-time.
static string documentName = "document.docm"; static string ribbonXMLFileName = "Ribbon.xml"; static void Main(string[] args) { byte[] updatedByteContent = AddRibbonToDocument(File.ReadAllBytes(documentName)); if (updatedByteContent != null) { using (FileStream fileStream = new FileStream(documentName, FileMode.Create)) { fileStream.Write(updatedByteContent, 0, updatedByteContent.Length); } } if (File.Exists(documentName)) { Process.Start(documentName); } }
Line 6:- Reads the contents of the document.docm file and pass the binary content to the AddRibbonToDocument() method which will add the ribbon to the document.
Line 7-14:- The binary content of the file (which also contains the ribbon now) is written to the same file as original and opened.
Add the below method in Program.cs. This method takes the binary content of a word file and adds the Ribbon XML to it.
public static byte[] AddRibbonToDocument(byte[] documentContent) { byte[] updatedDocumentContent = null; if (documentContent != null) { using (MemoryStream memoryStream = new MemoryStream()) { memoryStream.Write(documentContent, 0, documentContent.Length); string ribbonXMLAsString = GetRibbonXML().ToString(); using (WordprocessingDocument myDoc = WordprocessingDocument.Open(memoryStream, true)) { MainDocumentPart mainPart = myDoc.MainDocumentPart; if (myDoc.GetPartsCountOfType<RibbonExtensibilityPart>() > 0) { myDoc.DeletePart(myDoc.GetPartsOfType<RibbonExtensibilityPart>().First()); } RibbonExtensibilityPart ribbonExtensibilityPart = myDoc.AddNewPart<RibbonExtensibilityPart>(); ribbonExtensibilityPart.CustomUI = new DocumentFormat.OpenXml.Office.CustomUI.CustomUI(ribbonXMLAsString); myDoc.CreateRelationshipToPart(ribbonExtensibilityPart); } updatedDocumentContent = memoryStream.ToArray(); } } return updatedDocumentContent; }
Line 4-8 :- The binary content of the document is put in a MemoryStream which will be used for any modification in the content.
Line 9 :– The ribbon XML is got from the GetRibbonXML() method which can either get the XML from a static file or dynamically construct from the database values.
Line 10 :- WordProcessingDocument object is initialized from the memorysteam of the document content. The second parameter of the constructor is “IsEditable” is set to true as we are going to modify its content.
Line 14- 15 :- Get the main document part from the wordprocessing document and delete any existing custom ribbon from it.
Line 17 – 19 :- Content of the ribbon XML needs to be added as a RibbonExtensibilityPart to the main document and a relationship will be created for the same. Infact any type of content you add to a document as a part, you must create its (part’s) relationship with the document so that document can load up that part when you open the document in MSWord (or in general MS Office).
So, at this point of time If you run the application, the document.docm should get opened and you should see the tab and the buttons.
More explanation on line 17-19
Document structure before you ran the above code :-
Look at the _rels/.rels file. You don’t see anything related to Custom UI here.
Document structure after the above code is run:-
You will see a customUI folder created here:-
Open the CustomUI folder and the file inside it will contain the same ribbonXml you inserted using the code above:-
Look at the _rels/.rels file. You will see a new entry stating the relationship with the CustomUI.xml file here.
btw, If you click on any of the buttons now, nothing would happen as we haven’t added any interactivity features to those buttons.
Adding interactivity to the ribbon elements:-
1) Make a copy of the Document.docm and rename the copied document to “DocumentWithMacros.docm”. Open the developer tab and insert a “Module” to the project.
2) Rename the module to OfficeMacroHelper:-
3) Add the following macro code to the module. Then save and close the word file:-
Sub CreateTextHyperLink(control As IRibbonControl) CreateHyperlink control.Tag, control.id End Sub Sub InsertTextHyperlink(hyperlink As String, textTodisplay As String) CreateHyperlink hyperlink, textTodisplay End Sub Sub CreateEmailHyperLink(control As IRibbonControl) InsertEmailHyperliink control.Tag, control.Tag End Sub Sub InsertEmailHyperliink(hyperlink As String, textTodisplay As String) Dim emailLink As String emailLink = "mailto:" & hyperlink CreateHyperlink emailLink, textTodisplay End Sub Sub CreateHyperlink(address As String, textTodisplay As String) ActiveDocument.Hyperlinks.Add Anchor:=Selection.Range, address:="" & address & "", SubAddress:="", textTodisplay:="" & textTodisplay & "" End Sub
4) At this point of time if you view the TheDocumentWithMacros.docm, you see vbaProject.bin. This file has got the binary form of all the macros the document contains. This is what we need to copy in our main document (document.docm).
5) Now we have the macros in “TheDocumentWithMacro.docm”. Its time to call them from our main document “Document.docm”.We call those macro functions from the onAction event of the button.
<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui"> <ribbon> <tabs> <tab id="tabMyZone" label="My Zone"> <group id="grpLinks" label="My links"> <button id="Google" label="Google" tag="http://www.google.com" onAction="CreateTextHyperLink"/> <button id="Facebook" label="Facebook" tag="http://www.facebook.com" onAction="CreateTextHyperLink"/> <button id="Gmail" label="Gmail" tag="http://www.gmail.com" onAction="CreateTextHyperLink"/> </group> <group id="grpEmailAddresses" label="My Contacts"> <button id="e1" label="Ashish Gupta" tag="ashish.kuber@wipro.com" onAction="CreateEmailHyperLink"/> <button id="e2" label="Sachin Tendulkar" tag="sachinrt@yahoo.com" onAction="CreateEmailHyperLink"/> <button id="e3" label="James Hetfield" tag="James.Hetfield@metallica.com" onAction="CreateEmailHyperLink"/> </group> </tab> </tabs> </ribbon> </customUI>
6) Copy the macro code from the “TheDocumentWithMacro.docm” to the “Document.docm”:-
public static void CopyMacro(byte[] documentWithMacroContent, WordprocessingDocument document) { const string vbaProjectRelationShipType = "http://schemas.microsoft.com/office/2006/relationships/vbaProject"; VbaProjectPart vbaProjectPart = null; using (MemoryStream memoryStream = new MemoryStream(documentWithMacroContent, false)) { using (WordprocessingDocument documentWithMacro = WordprocessingDocument.Open(memoryStream, false)) { MainDocumentPart mainPart = documentWithMacro.MainDocumentPart; foreach (IdPartPair partPair in mainPart.Parts) { if (partPair.OpenXmlPart.RelationshipType == vbaProjectRelationShipType) { vbaProjectPart = (VbaProjectPart)partPair.OpenXmlPart; break; } } MainDocumentPart mainPart1 = document.MainDocumentPart; ExtendedPart extendedPart = null; foreach (IdPartPair partPair in mainPart1.Parts) { if (partPair.OpenXmlPart.RelationshipType == vbaProjectRelationShipType) { extendedPart = (ExtendedPart)partPair.OpenXmlPart; break; } } if (extendedPart != null) mainPart1.DeletePart(extendedPart); if (vbaProjectPart != null) mainPart1.AddPart<VbaProjectPart>(vbaProjectPart); } } }
Line 11- 18 :- Get the VbaProjectPart from the document with macro.
Line 20-29 :- Get the VbaProjectPart from the document.
Line 31-32 :- Delete the existing VbaProjectPart from the document If any.
Line 34-35 :- Add the VbaProjectPart got from the Line (125-133) to the document.
7) Get the binary content of the “TheDocumentWithMacro.docm” (line 7).
static string fileName = "document.docm"; static string ribbonXMLFileName = "Ribbon.xml"; static string documentWithMacroFileName = "TheDocumentWithMacro.docm"; static byte[] documentWithMacroContent; static void Main(string[] args) { documentWithMacroContent = File.ReadAllBytes(documentWithMacroFileName); byte[] updatedByteContent = AddRibbonToDocument(File.ReadAllBytes(fileName)); if (updatedByteContent != null) { using (FileStream fileStream = new FileStream(fileName, FileMode.Create)) { fileStream.Write(updatedByteContent, 0, updatedByteContent.Length); } } if (File.Exists(fileName)) Process.Start(fileName); }
8) Modify the AddRibbonToDocument() to add call to CopyMacro() method (line 20).
public static byte[] AddRibbonToDocument(byte[] documentContent) { byte[] updatedDocumentContent = null; if (documentContent != null) { using (MemoryStream memoryStream = new MemoryStream()) { memoryStream.Write(documentContent, 0, documentContent.Length); string ribbonXMLAsString = GetRibbonXML().ToString(); using (WordprocessingDocument myDoc = WordprocessingDocument.Open(memoryStream, true)) { MainDocumentPart mainPart = myDoc.MainDocumentPart; if (myDoc.GetPartsCountOfType<RibbonExtensibilityPart>() > 0) myDoc.DeletePart(myDoc.GetPartsOfType<RibbonExtensibilityPart>().First()); RibbonExtensibilityPart ribbonExtensibilityPart = myDoc.AddNewPart<RibbonExtensibilityPart>(); ribbonExtensibilityPart.CustomUI = new DocumentFormat.OpenXml.Office.CustomUI.CustomUI(ribbonXMLAsString); myDoc.CreateRelationshipToPart(ribbonExtensibilityPart); CopyMacro(documentWithMacroContent, myDoc); } updatedDocumentContent = memoryStream.ToArray(); } } return updatedDocumentContent; }
At this point of time, If you run the application you should see the buttons on the newly added tab. Clicking on the buttons embed links on the document.
NOTE :- If you are like me, you must be thinking of creating the VBProject dynamically to the document.docm file rather than maintaining another file (ThedocumentWithMacro.docm) and copying from the same. Although theoretically Its possible, Its way too complex to implement or I just dont have the time to implement that way. See this msdn.microsoft.com/en-us/library/cc313094(v=office.12).aspx.