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

Browser Swing support

Status
Not open for further replies.

GusBrown

Programmer
Nov 24, 2000
38
GB
Does anyone know if IE/NN users have to actually download a seperate component(s) to allow applets to use Swing? Was this just the case with older versions that now have Swing support built in?

Thanks,

Gus
 
Swing support for Applets is usually done thru the use of Sun's HTML Converter which prompts the user to download Sun's Java Plugin. Most browser's come equipped with archaic jre installations and are no good to anyone using Swing.

Here is the link to the plugin:
Here is the link to the HTML Converter: Wushutwist
 
I may be wrong, but someone told me that netscape 6 does support Swing - can anyone confirm this?
bruce21.jpg
 
<html>

<OBJECT classid=&quot;clsid:8AD9C840-044E-11D1-B3E9-00805F499D93&quot;
WIDTH = 800 HEIGHT = 500 codebase=&quot;<PARAM NAME = CODE VALUE = &quot;MyApplet.class&quot; >


<PARAM NAME=&quot;type&quot; VALUE=&quot;application/x-java-applet;version=1.1.2&quot;>
<COMMENT>
<EMBED type=&quot;application/x-java-applet;version=1.1.2&quot; java_CODE = &quot;MyApplet.class&quot; WIDTH = 800 HEIGHT
= 500 pluginspage=&quot;This Browser do not support Java

Install JVM for your browser
</NOEMBED></EMBED>
</OBJECT>

<!--
<APPLET CODE = &quot;MyApplet.class&quot; WIDTH = 800 HEIGHT = 500 >

This Browser do not support Java

Install JVM for your browser



</APPLET>
-->




</html>

And Replace MyApplet.class with ur class name

Cheers
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top