Below is a Macro I have been using in LibreOffice base version 7.3.1.3 and the previous 2 versions on a Windows 10.
I have had to connect my base to MySql ( using the most recent version ) to share the database for several other users now.
This is the Macro I was using. I am not sure what I will need to adjust for MySql.
Can anyone give a suggestion on what I need to do.
sub autoexec()
dim oController as object
oController = ThisDatabaseDocument.CurrentController
if Not oController.isConnected() Then oController.connect()
oController.loadComponent(com.sun.star.sdb.application.DatabaseObject.FORM,"SPLASHSCREEN",FALSE)
end sub
Sub SetSPLASHSCREEN
Resize(40,50,1270,660)
End Sub
Thanks for any assistance