LibreOffice 7.4 Bantuan
Access2Base is a LibreOffice BASIC library of macros for (business or personal) application developers and advanced users. It is one of the libraries stored in "Application macros and dialogs".
The functionalities provided by the implemented macros are all directly inspired by Microsoft Access. The macros are callable mainly from a LibreOffice Base application, but also from any LibreOffice document (Writer, Calc, ...) where access to data stored in a database makes sense.
API yang disediakan oleh Access2Base dimaksudkan agar lebih padat, intuitif, dan mudah dipelajari daripada API UNO standar (API = Application Programming Interface).
Pustaka didokumentasikan daring pada http://www.access2base.com
API yang disederhanakan dan dapat dikembangkan untuk bentuk, percakapandankendalimerekayasa untuk mirip dengan model peraga di Microsoft Access.
sebuah API untuk akses basis data dengan tabel, kueri, setrekord dan ruas objek,
sejumlah aksi dengan suatu sintaksis identik dengan makro/aksi Microsoft Access yang terkait
DLookup, DSum, ... fungsi basis data,
dukungan notasi singkatan seperti Forms!myForm!myControl
sebagai tambahan
penangan galat dan eksepsi yang konsisten,
fasilitas untuk pemrograman formulir, dialog, dan kendali peristiwa dan
dukungan formulir tertanam dan mandiri (Writer).
REM Open a form ...
OpenForm("myForm")
REM Move a form to new left-top coordinates ...
Dim ofForm As Object ' In VBA => Dim ofForm As Form
Set ofForm = Forms("myForm")
ofForm.Move(100, 200)
REM Get the value of a control ...
Dim ocControl As Object
ocControl = ofForm.Controls("myControl")
MsgBox ocControl.Value
REM Hide a control ...
ocControl.Visible = False
REM ... or alternatively ...
setValue("Forms!myForm!myControl.Visible", False) ' Shortcut notation
' In VBA => Forms!myForm!myControl.Visible = False