Option Compatible Statement

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

warning

Diese Anweisung muss in einem Modul vor dem ausführbaren Programmcode stehen.


note

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


Diese Option kann folgende Situationen beeinflussen oder unterstützen:

note

Option Compatible ist beim Codieren von Klassenmodulen erforderlich.


Syntax:

Option Compatible

Beispiel:

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.


Unter Betriebssystem identifizieren und Sitzungsinformationen abrufen finden Sie einfache Beispiele für Option Compatible oder unter Gemeinsam genutzte Access2Base-Basisbibliothek weitere Klassenbeispiele für die Verwendung von Option Compatible für den Compiler-Modus.

Bereichsänderung für Variablen in Verwenden von Prozeduren und Funktionen mit der Funktion CompatibilityMode().