Option Compatible-uttrykket

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

warning

Dette uttrykket mÄ setjast inn framfÞre programkoden i ein modul.


note

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


Dette alternativet kan pÄverka eller bistÄ i desse situasjonane:

note

Option Compatible er pÄkravd nÄr du kodar klassemodular.


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.


Endring av variabelomfang i Bruk av prosedyrar og funksjonar med CompatibilityMode()-funksjonen.

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.