Hi! How to run an application on Linux using jShell?
This works on Windows and Mac. But not Linux.
fx.ShowExternalDocument(File.GetUri(appname, "")) is not useful here since it runs the app but also opens a browser tab in Firefox.
Which is not a desired since only the application should run.
This works on Windows and Mac. But not Linux.
fx.ShowExternalDocument(File.GetUri(appname, "")) is not useful here since it runs the app but also opens a browser tab in Firefox.
Which is not a desired since only the application should run.
shell:
Dim tstr As String
tstr = "App.jar"
Dim shl As Shell
shl.InitializeDoNotHandleQuotes("shl", "Open", Array As String ("", tstr))
shl.WorkingDirectory = File.DirApp
shl.Run(RunDelay)
Last edited: