ModelTrains
Programmer
I have an app that uses the following code to ping a remote server:
Runtime r = Runtime.getRuntime();
Process p = r.exec( "ping "+ip);
This is running in MS Windows 2000, but causes an ugly, black command window to appear over the application window. Is there a way to force it into the background, run as "minimized" or not appear at all?
Thanks in advance for your help!
Runtime r = Runtime.getRuntime();
Process p = r.exec( "ping "+ip);
This is running in MS Windows 2000, but causes an ugly, black command window to appear over the application window. Is there a way to force it into the background, run as "minimized" or not appear at all?
Thanks in advance for your help!