Text Documents (Writer)
HTML Documents (Writer Web)
Spreadsheets (Calc)
Presentations (Impress)
Drawings (Draw)
Database Functionality (Base)
Formulae (Math)
Charts and Diagrams
Macros and Scripting
Office Installation
Common Help Topics
OneOffice Logo

Option VBASupport Statement

Specifies that Office Basic will support some VBA statements, functions and objects.

This statement must be added before the executable program code in a module.

The support for VBA is not complete, but covers a large portion of the common usage patterns.

When VBA support is enabled, Office Basic function arguments and return values are the same as their VBA functions counterparts. When the support is disabled, Office Basic functions may accept arguments and return values different from their VBA counterparts.

Syntax:

Option VBASupport {1|0}

Parameters:

1: Enable VBA support in Office

0: Disable VBA support

Example:


Option VBASupport 1
Sub ExampleVBA
    Dim sVar As Single
    sVar = Worksheets("Sheet1").Range("A1")
    Print sVar
End Sub