Tayfur Well-Known Member Licensed User Longtime User Jan 3, 2019 #1 How can i open non-ui app with arguments. or is fx.S.E.D. support with arg? B4X: fx.ShowExternalDocument("file:/C:/B4X/B4J/B4J-EX~1/Objects/test.jar")
How can i open non-ui app with arguments. or is fx.S.E.D. support with arg? B4X: fx.ShowExternalDocument("file:/C:/B4X/B4J/B4J-EX~1/Objects/test.jar")
DonManfred Expert Licensed User Longtime User Jan 3, 2019 #2 Use jshell to start a process with commands Next time please post questions in the Questionsforum; not in the Tutorial-forum. I asked Erel to move the thread. Upvote 0
Use jshell to start a process with commands Next time please post questions in the Questionsforum; not in the Tutorial-forum. I asked Erel to move the thread.
Erel B4X founder Staff member Licensed User Longtime User Jan 3, 2019 #3 DonManfred said: I asked Erel to move the thread. Click to expand... Done. Upvote 0
Tayfur Well-Known Member Licensed User Longtime User Jan 3, 2019 #4 DonManfred said: Use jshell to start a process with commands Next time please post questions in the Questionsforum; not in the Tutorial-forum. I asked Erel to move the thread. Click to expand... yes, you are absolutely right. I forget to change it every time. Soryy. I will searching jshell.. Thanks @DonManfred Upvote 0
DonManfred said: Use jshell to start a process with commands Next time please post questions in the Questionsforum; not in the Tutorial-forum. I asked Erel to move the thread. Click to expand... yes, you are absolutely right. I forget to change it every time. Soryy. I will searching jshell.. Thanks @DonManfred
Tayfur Well-Known Member Licensed User Longtime User Jan 3, 2019 #5 B4X: Dim shl As Shell shl.Initialize("shl", "java.exe" , Array As String("-jar", "test.jar","arg1","arg2")) shl.WorkingDirectory = File.DirApp shl.Run(-1) Upvote 0
B4X: Dim shl As Shell shl.Initialize("shl", "java.exe" , Array As String("-jar", "test.jar","arg1","arg2")) shl.WorkingDirectory = File.DirApp shl.Run(-1)