Hello every1.
I'm having a tough time trying to make a button(when clicked) link or point to a partucular file(e.g setup file) and run that file within the same system. Please help! :( a little code will help.
thanks in advance
If you mean an external file ... i.e, an exe file or like that .... then you should try
Process p = Runtime.getRuntime().exec("c:\myprogram.exe");
:mrgreen: