I’ve worked on a project with a lot of forms. As this project is not intended for me but for people who are not at ease with this software, I was wondering if it was possible to open the main form directly when running libreoffice base ?
I tried to execute the classic open forms macro by assigning it to a bunch of actions in tools -> customize
section, but at the execution, it returns an error saying that there isn’t a connexion to the DB, which I understand knowing that the macro is based of the current opened DB. But I don’t know other way to open a form. I’m totally new to base.
This is the macro I used.
Sub openMenu
const forms = "F_MENU"
link = ThisDatabaseDocument.FormDocuments.getbyname(forms).open
End Sub