how to run a process in background?
hallo,
I'm starting a process with runtime.exec() like this:
Runtime r = Runtime.getRuntime();
String[] conv = new String[1];
conv[0] = "executablepath";
Process p=r.exec(conv);
Now I want that the application does not appear and run in background. How do I do this?
I'm working with Windows NT4.0
Thanks

