The Artima Developer Community
Sponsored Link

Java Answers Forum
Need help with HM_Menus...

1 reply on 1 page. Most recent reply: May 14, 2002 10:37 AM by Evgen

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 1 reply on 1 page
Mike Olbinski

Posts: 1
Nickname: phxmike
Registered: May, 2002

Need help with HM_Menus... Posted: May 14, 2002 8:18 AM
Reply to this message Reply
Advertisement
I have it all setup correctly and it's working great.

I am just wondering if anyone knows HOW you get a link to open up in a new browser window, or if that is even possible?

Thanks!

Mike


Evgen

Posts: 14
Nickname: evgen79
Registered: May, 2002

Re: Need help with HM_Menus... Posted: May 14, 2002 10:37 AM
Reply to this message Reply
import java.applet.Applet;
import java.applet.AppletContext;
import java.awt.Graphics;
import java.io.PrintStream;
import java.net.URL;
 
public class readrie extends Applet
{
 
    public void paint(Graphics g)
    {
        try
        {
            URL url = new URL("http://ya.ru/index.html");
            getAppletContext().showDocument(url, "newwin");
        }
        catch(Exception exception)
        {
            System.err.print("Error");
        }
    }
}

Flat View: This topic has 1 reply on 1 page
Topic: Problem Previous Topic   Next Topic Topic: J2EE

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use