Is there any way to find the path of the install directory of LibreOffice where the soffice.bin is located?
It might be possible to use GetCommandLineW on windows, but this is dependent on a windows dll.
Private Declare Function GetCommandLine Lib "kernel32" Alias "GetCommandLineW" () As Long
Is there some equivalent for linux?
Trying to find the path to the running executable to allow timed calls to macros via Shell command, without hardcoding the path in the macro as this is sometimes different on different installations.