import java.io.*;
public class ExeCommand {
public static void main(
String args[]) {
try {
Process p = Runtime.getRuntime().exec("path_of_your_exe_file");
p.waitFor();
}
catch(IOException e){}
catch(InterruptedException e){}
}
}
[ August 01, 2003: Message edited by: Tiago Fernandez ]