• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

Calling a .hnd in my Swing program.

 
Greenhorn
Posts: 9
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
How can i call a .hnd file(help) file in my swing program.When i will click in help button in my swing program it will call this help file.
Here is my coading


btnHelp.setText("Help");
btnHelp.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e)
{
btnHelp_actionPerformed(e);
System.out.println("Help");
}

});


Please guide me.
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm not sure what a "hnd" file is, but what does it mean to "call" it? Is there a viewer component to display them in a Java application? Or do you want to run an external application?

Also, please CarefullyChooseOneForum. This one is about JSP, which has nothing to do with Swing applications. I'll move it to a more appropriate forum.
[ August 13, 2008: Message edited by: Ulf Dittmer ]
 
Ranch Hand
Posts: 4632
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
same as you'd call any app.?

Runtime.getRuntime().exec(...)
 
ice is for people that are not already cool. Chill with this tiny ad:
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic