Istruzione Option Compatible

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

warning

Questa istruzione deve essere inserita prima del codice eseguibile del programma all'interno del modulo.


note

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


Questa opzione può interessare o aiutare nelle situazioni sotto specificate:

note

Option Compatible è obbligatorio quando si programmano moduli di classe.


Sintassi:

Option Compatible

Esempio:

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.


Modifica di ambito delle variabili in Uso di procedure e funzioni con la funzione CompatibilityMode().

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.