Optie Compatibiliteit Statement

Option Compatible turns on the VBA-compatible Basic compiler mode at the module level. The function CompatibilityMode() controls runtime mode and affects all code executed after setting or resetting the mode.

warning

Deze instructie moet worden ingevoegd vóór de uitvoerbare programmacode in een module.


Deze optie kan invloed hebben op of helpen in de volgende situaties:

note

Optie Compatibiliteit is nodig als klassemodules worden gecodeerd.


Syntaxis:

Option Compatible

CompatibilityMode() Functie

CompatibilityMode() function is controlling runtime mode and affects all code executed after setting or resetting the mode. Option Compatible turns on VBA compatibility at module level for the LibreOffice Basic compiler.

warning

Use this feature with caution, limit it to document conversion situations for example.


Deze functie kan invloed hebben op of helpen in de volgende situaties:

note

CompatibilityMode() function may be necessary when resorting to Option Compatible or Option VBASupport compiler modes.


Syntaxis:

CompatibilityMode(True | False)

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

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