Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.java.programmer > #14522
| From | Richard Maher <maherrj@googlemail.com> |
|---|---|
| Newsgroups | comp.lang.java.programmer |
| Subject | Re: "java_sersion" Applet parameter's Expected behaviour |
| Date | 2012-05-11 07:27 -0700 |
| Organization | http://groups.google.com |
| Message-ID | <ef60eb8f-507e-422e-8ab3-eaa3817ade84@o3g2000pby.googlegroups.com> (permalink) |
| References | <cd1a43f4-1042-4fd8-8e9d-32012efa9c6a@k10g2000pbk.googlegroups.com> |
Honestly, here's a very simple applet: -
<HTML>
<HEAD>
<TITLE> A Simple Program </TITLE>
</HEAD>
<BODY>
Here is the output of my program:
<APPLET CODE="HelloWorld.class" WIDTH=150 HEIGHT=25>
<param name="java_version" value="1.4*">
</APPLET>
</BODY>
</HTML>
import java.awt.Graphics;
public class HelloWorld extends java.applet.Applet {
public void init() {
resize(150,25);
}
public void paint(Graphics g) {
g.drawString("Hello world!", 50, 25);
}
}
Can *anyone* show me *any version* or Java +/- browser wher the
"java_version" applet parameter does *anything* other than take up
space? APPLET, OBJECT, or EMBED tags.
What is supposed to hapen when I ask/demand 7.0 and 7.0 does not
exists???
Is larry pre-occupied on courtroom battles to concentrate on something
that should be so simple?
Cheers Richard Maher
Back to comp.lang.java.programmer | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
"java_sersion" Applet parameter's Expected behaviour Richard Maher <maherrj@googlemail.com> - 2012-05-09 20:36 -0700
Re: "java_sersion" Applet parameter's Expected behaviour Richard Maher <maherrj@googlemail.com> - 2012-05-11 07:27 -0700
Re: "java_sersion" Applet parameter's Expected behaviour Lew <lewbloch@gmail.com> - 2012-05-11 13:32 -0700
Re: "java_sersion" Applet parameter's Expected behaviour Lew <lewbloch@gmail.com> - 2012-05-15 15:20 -0700
csiph-web