https://bugs.documentfoundation.org/show_bug.cgi?id=161405
--- Comment #8 from Werner Tietz <[email protected]> --- flatpak tells me »permission denied« with: ____ Sub OpenFile_hyou_jp2 Set oShell = CreateUnoService("com.sun.star.system.SystemShellExecute") path = "/home/wertie/Documents/表.ods" oShell.execute( path, "", com.sun.star.system.SystemShellExecuteFlags.DEFAULTS) End Sub ___ but it works as intended when i give systemshell.execute the right arguments: ___ Sub OpenFile_hyou_jp3 Set oShell = CreateUnoService("com.sun.star.system.SystemShellExecute") path = "/home/wertie/Documents/表.ods" command = "/app/libreoffice/program/soffice" oShell.execute(command, path, com.sun.star.system.SystemShellExecuteFlags.DEFAULTS) End Sub -- You are receiving this mail because: You are the assignee for the bug.
