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 Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Java applets and JFrames on a webpage

Status
Not open for further replies.

mooster2

Programmer
Jan 26, 2004
21
CA
I know we can put java applets on a web page simply by using the <APPLET> tag for example
<APPLET code=&quot;MyClass.class&quot; width=700 height=375></APPLET>

but is it possible to do the same for Java JFrames?
 
The JFrame class is kind of like Applet class, in that they both are subclasses of java.awt.Component.

You can certainly add a JFrame to to your Applet class.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top