Istruzione Option Compatible
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.
Questa opzione può interessare o aiutare nelle situazioni sotto specificate:
Allow special characters as identifiers. all characters that are defined as letter in the Latin-1 (ISO 8859-1) character set, are accepted as part of identifiers.
Supporta le parole chiave Private/Public per le procedure.
Istruzione Set obbligatoria per gli oggetti.
Valori predefiniti per i parametri opzionali nelle procedure.
Argomenti denominati quando esistono più parametri opzionali.
Precaricamento delle librerie LibreOffice Basic
Option Compatible è obbligatorio quando si programmano moduli di classe.
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
Statement Option VBAsupport 1 sets Option Compatible statement automatically.