Getting started in VBA

From Ribbon Commander Documentation
Revision as of 22:48, 14 March 2013 by Rxdff15551 bb53 (Talk | contribs) (Before we start)

Jump to: navigation, search

Before we start

Before we get started, you need to:

Referencing the library

  1. Create a new project in your favourite office application
  2. Add a VBA reference to the Dynamic RibbonX library (Tools->References)
    VBAReference.png
  3. The library is now ready to use. In the immediate window enter
    ?rxCustomUI.defaultInstance.targetOfficeVersion
    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)
    UnsupportedExcelVersion.png

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.