LibreOffice-Examples: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

23 February 2026

  • curprev 15:5215:52, 23 February 2026Water talk contribs 14,584 bytes +14,584 Created page with "==Getting Started Examples== ===Quickstart: Base=== <syntaxhighlight lang="autoit"> #include <MsgBoxConstants.au3> #include <File.au3> #include "LibreOfficeBase.au3" ; Create a New, visible, Blank Libre Office Document. Global $oDoc = _LOBase_DocCreate(True, False) If @error Then Exit MsgBox($MB_OK + $MB_ICONERROR + $MB_TOPMOST, "Error", "Failed to Create a new Base Document. Error:" & @error & " Extended:" & @extended & " On Line: " & @ScriptLineNumber) ; Set the Da..."