Instantiate a new Frame and use it instead.
public class blah extends Applet
{
public void init()
{
Frame f = new Frame("Text");
f.setBounds(100,50,300,100);
f.show();
}
}
On Mon, 10 Jan 2000 [EMAIL PROTECTED] wrote:
> Dear List,
> This is a more of a Java question.
>
> How can I get an applet to show in an applet window instead of a browser?
> For example, if I had a link on a page, the user clicks the link and my
> applet appears in it's own window.
>
> Cheers,
> Marcus
--
Trent Jarvi
[EMAIL PROTECTED]
----------------------------------------------------------------------
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]