Option Compatible 语句

Option Compatible extends LibreOffice Basic compiler and runtime, allowing supplemental language constructs to Basic.

warning

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


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

note

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


语法:

Option Compatible

示例:

Special characters as identifiers


        Option Compatible
        ' With this option the code works, otherwise it causes a compiling error
        Sub Main
            ä = 10
            print ä
        End Sub
    
tip

Statement Option VBAsupport 1 implies Option Compatible statement automatically.


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

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.

请支持我们!