Displaying a Help File from an Applet

Displaying a Help File from an Applet

With an Applet running under the control of an HTML browser, it’s natural to provide Help in the form of an HTML file too, or a set of them for a complex task. If your Applet’s interface is displayed in a separate Frame, then you can safely use the browser’s window for the Help with the following lines of code;

 import java.net.*;    try {        URL docubase = getDocumentBase();        URL helpfile = new URL(docubase, "YourHelp.html");        AppletContext browser = getAppletContext();        browser.showDocument(helpfile);    }    catch (Exception ex) {}

If the Applet’s interface is displayed in the browser’s window, then you can trigger the creation of a second window for the Help file by having another argument in the showDocument method;

         browser.showDocument(helpfile, "Help");

With most popular browsers, this second argument will be used as the window’s title. If you implement context sensitive help, displaying one of several HTML files, then using the same second argument each time will result in re-use of the same window.

Share the Post:
data observability

Data Observability Explained

Data is the lifeblood of any successful business, as it is the driving force behind critical decision-making, insight generation, and strategic development. However, due to its intricate nature, ensuring the

Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved