A Q about Borland JBuilder9.

From: Aljo_ (aljo_ribw_at_hotmail.com)
Date: 10/11/03


Date: Sat, 11 Oct 2003 19:09:16 +0200

Hello!

I got a free evaluation copy of Borland's JBuilder9.

I also got a book about JAVA, and I am trying to type, compile and run some
examples from the book.

The following - very simple - source comes from my book, and I get the
errormessage that the applet isn't initialised.

Can someone please tell me how to get this to work?

Thanks, it is probably a very minor line that JBuilder9 needs, because the
book isn't about a specific JAVA compiler.

Here is my source:
----start----
package applet_test;

/**
 * <p>Title: applet test</p>
 * <p>Description: trying to get applets in html working</p>
 * <p>Copyright: Copyright (c) 2003</p>
 * <p>Company: </p>
 * @author aljo
 * @version 1.0
 */
import java.applet.*;
import java.awt.*;

public class Applet0 extends Applet
{
  public void paint(Graphics g) {
    g.drawString("Een bijzonder eenvoudige applet", 10, 20);
  }
}
----end---
http://home.planet.nl/~aljo.in.pictures (About me, my relatives, hometown,
etc...)
http://www.home.zonnet.nl/Amersfoort (About my hometown, lots of photos and
explanation. Ook in het Nederlands.)
http://www.ranger49.tmfweb.nl (About the American Forces Network Europe.)



Relevant Pages

  • using generated java code in Java applets
    ... I'm using Matlab Java Builder to compile .m ... When I run teh applet in netbeans environmnet, ... public void init() { ...
    (comp.lang.java.programmer)
  • How much efficient is Java 6 to Java 1.3?
    ... I have an Applet designed using Java1.3 ... Should I compile the code with Java 6 to get higher performance? ...
    (comp.lang.java.programmer)
  • Re: how do I get rt.jar for java 1.1?
    ... On Tue, 11 May 2004 19:10:42 GMT, Andrew Thompson wrote: ... ("I need to compile an applet for version java 1.1 ") ...
    (comp.lang.java.programmer)
  • Re: JVM not found..
    ... I am able to compile and run java 'applications' perfectly well ... Only when I try to run an applet, ...
    (comp.lang.java.help)
  • Re: How to complie
    ... You compile a java program using "javac", and one of the ways to run the ... public static void translate ... The program you have here is an applet, ...
    (comp.lang.java.programmer)