Option Compatible-udtryk

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

warning

Dette udtryk skal tilføjes før den eksekverbare programkode i et modul.


note

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


Denne funktion kan påvirke eller assistere i disse situationer:

note

Option Compatible er nødvendig under kodning af klassemoduler.


Syntaks:

Option Compatible

Eksempel:

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.


Identifikation af operativsystem og Hentning af sessionsinformation finder du enkle eksempler på Option Compatible, eller Access2Base shared Basic library hvor du finder andre klasse-eksempler med brug af Option Compatible compiler-tilstand.

Variablers omfangsændringer på Anvendelse af procedurer og funktioner med CompatibilityMode()-funktion.