tags:

views:

26

answers:

2

I'm new to Japplets.. I'm wondering if I have the following...

   classA A = new classA();
   //launch Japplet here

and classA extends Japplet how would I launch the Japplet?

If it's any help I'm using a Java Bean and I've tried calling classA.init(); although this class does execute when I call this method it just doesn't show my JApplet on display.

+1  A: 

Perhaps the init() method?

Mike
When I do this `init()` does execute but the JApplet doesn't appear on screen.
Ulkmun
Hm. setVisible(true); ?
Mike
Doesn't appear to be working.. I'm using a javabean if that's any help.. when I call `init()` it is executing it's just... not putting up the Japplet!
Ulkmun
A: 

I suspect you either need to use a browser or an applet viewer to see anything. During development I would recommend an applet viewer as it is easier to get going (fewer security issues).

BigMac66
How would I make an applet viewer Launch when I execute my class?
Ulkmun