Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Java and browser 1

Status
Not open for further replies.

Cagliostro

Programmer
Sep 13, 2000
4,226
GB
Hi,
1. how can I open a new InternetExplorer browser window with some URL from a Java Applet
2. How can I make an InternetExplorer window or a frame to navigate to some location from URL using an applet? Ion Filipski
1c.bmp


filipski@excite.com
 
public void AppletContext.showDocument(URL url, String target)

if you send "_blank" as "target" parameter it should display in a new instance of the browser.

getAppletContext().showDocument( sUrl, "_blank");

-pete
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top