Ajuda del LibreOffice 7.2
Opció compatible activa el mode de compilació Bàsic compatible amb VBA a nivell de mòdul.
The function CompatibilityMode() controls runtime mode and affects all code executed after setting or resetting the mode.
This option may affect or assist in the following situations:
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.
Support Private/Public keywords for procedures.
Compulsory Set statement for objects.
Default values for optional parameters in procedures.
Named arguments when multiple optional parameters exist.
Preload of LibreOffice Basic libraries
es requereix compatible amb opcions quan es codifiquen els mòduls de classe.
Option Compatible
Option Compatible
' With this option the code works, otherwise it causes a compiling error
Sub Main
ä = 10
print ä
End Sub
Statement Option VBAsupport 1 sets Option Compatible statement automatically.