Option Compatible 语句

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

warning

此语句必须添加到模块中的可执行程序代码之前。


note

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


在下列情况下, 此选项可能会产生影响或有所帮助:

note

编码类模块时必须使用 Option Compatible


语法:

Option Compatible

示例:

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.


请参阅《识别操作系统》与《获取会话信息》获取 Option Compatible 的简单示例,或参阅《Access2Base 共享 Basic 库》获取其他利用 Option Compatible 编译器模式的类的示例。

使用过程和函数》中利用 CompatibilityMode() 函数修改变量作用域。