HI everybody! I am starting a visual basic application from java with the following routine:
Runtime rt = Runtime.getRuntime();
try {
Process p = rt.exec("Grabacion");
}
catch (Exception e)
{ e.printStackTrace();
}
I want to know if there is any method in java that can make this application "grabacion" stop running...like a stop or quit exec or something like that! Hope someone can help me very soon!