Option Compatible Statement

Option Compatible turns on the VBA-compatible Basic compiler mode at the module level.

warning

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


note

The function CompatibilityMode() controls runtime mode and affects all code executed after setting or resetting the mode.


This option may affect or assist in the following situations:

note

Option Compatible is required when coding class modules.


Sintaxe:

Option Compatible

Exemplo:

Special characters as identifiers


        Option Compatible' With this option the code works, other-
                            ' wise it will cause a compiling error
        Sub Main
            ä = 10
            print ä
        End Sub
    
tip

Statement Option VBAsupport 1 sets Option Compatible statement automatically.


Variables scope modification in Using Procedures and Functions with CompatibilityMode() function.

Refer to Identifying the Operating System and Getting Session Information for class module examples, or Access2Base shared Basic library for other class examples making use of Option Compatible compiler mode.

Precisamos da súa axuda!