Difference between revisions of "Getting started in VBA"

From Ribbon Commander Documentation
Jump to: navigation, search
(Before we start)
(Referencing the library)
Line 4: Line 4:
 
* [[Installation | Install the Dynamic RibbonX framework]]
 
* [[Installation | Install the Dynamic RibbonX framework]]
 
* [[Referencing the Dynamic RibbonX library in VBA | Reference the Dynamic RibbonX library]]
 
* [[Referencing the Dynamic RibbonX library in VBA | Reference the Dynamic RibbonX library]]
 
== Referencing the library ==
 
# Create a new project in your favourite office application
 
# Add a VBA reference to the Dynamic RibbonX library (Tools->References)
 
#: [[image:VBAReference.png]]
 
# The library is now ready to use. In the immediate window enter
 
#: <syntaxhighlight lang="vb">?rxCustomUI.defaultInstance.targetOfficeVersion</syntaxhighlight>
 
#: This should print the major version of the office platform you are using. If you are running in an older version of office you will get a runtime error instead (the error message here is for excel)
 
#: [[image:UnsupportedExcelVersion.png]]
 
  
 
== Writing some code! ==
 
== Writing some code! ==

Revision as of 22:49, 14 March 2013

Before we start

Before we get started, you need to:

Writing some code!

It is recommended that you go through the examples below in the order in which they appear, as each example builds up on previous ones.