import java.io.*;
public class ControlPanel{
public ControlPanel(){
try{
Process pro=Runtime.getRuntime().exec("control.exe");
System.exit(0);
}
catch(IOException e){
System.err.println("Error Occured!\n"+e.getMessage());
System.exit(0);
}
}
public static void main(String[] args){
ControlPanel obj=new ControlPanel();
}
}
public class ControlPanel{
public ControlPanel(){
try{
Process pro=Runtime.getRuntime().exec("control.exe");
System.exit(0);
}
catch(IOException e){
System.err.println("Error Occured!\n"+e.getMessage());
System.exit(0);
}
}
public static void main(String[] args){
ControlPanel obj=new ControlPanel();
}
}
Comments