I have a problem with calling an applet from another applet in
JBuilder7. The below code in the first applet(caller) opens a new
browser for the second one, but running the same code in Jbuilder
has no effect:
try {
url=new URL "http://localhost/project/classes/SecondApplet.html");
getAppletContext().showDocument(url,"");
}catch(MalformedURLException me) {
System.out.println("Coudln't open URL");
}