Yes...... Today in my Java lecture, I was figuring out with one of my collegues how we could start netscape from a Java application. And well it worked...Not only where we able to load Netscape..but also I tried with oddly enough powerpoint!..<br> private void openHelp()<br> { try {<br> Process process = Runtime.getRuntime().exec("helpc.bat"
;<br> }<br> catch (Exception e)<br> { System.out.println("Does not exits..make sure help.html does exist"
;<br> }<br>}<br>Thats the piece of code that starts powerpoint.<br>However I figure out that the Process object only executes files that are executible. From the command line you can put whatever.ppt and the powerpoint would fire up. But whatever.ppt is not an executible, so i though it would be better to put whatever.ppt in a batch file (Since batch files are executible) and it does.<br><br>However....as we all know..a program written on a dependant on anotherone is not good for portability issues. However...it does save time! if you wanted to display html or other information (eg .doc files)<br>