i want to open .chm help file when click on Help button on swing window. how should i do?
if(e.getActionCommand() == "Help" ){
Runtime run = Runtime.getRuntime();
try
{
Process child = Runtime.getRuntime().exec("F:\OfficeCommunicatorClient\src\resources\User Account HelpNew.chm\");
}
catch (Exception ex)
{
ex.printStackTrace();
System.out.println(ex.getMessage());
}
}