×
The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.
Sorry, Dave, I wasn't clear about my context. I was referring to the code, not the end use. E.g., a "Hello, world" applet might look like this:
import java.applet.Applet;
import java.awt.Graphics;
public class HelloWorld extends Applet {
public void paint(Graphics g) {
g.drawString("Hello world!", 50, 25);
}
}
where the same thing as an application could look like this:
/**
* The HelloWorldApp class implements an application that
* simply displays "Hello World!" to the standard output.
*/
class HelloWorldApp {
public static void main(String[] args) {
System.out.println("Hello World!"); //Display the string.
}
}
I'm certainly no expert here—these came out of Sun's Java tutorial, which is quite extensive,and
free for the downloading.
At 06:14 PM 10/7/97 -0500, you wrote:
>At 01:54 PM 10/7/97 -0500, Vern Hamberg wrote:
>>>>>
>The difference between an applet and an application is something to do with
>the class upon which you base things. If you use the applet class, it's an
>applet, Otherwise, no. (This is a very simple-minded explanation—I'm just
>starting, too.)
><<<<
>
>An "applet" is ment to be run in a web browser... not as a stand alone
>application.
Cheers
Vernon Hamberg
Systems Software Programmer
Old Republic National Title Insurance Company
400 Second Avenue South
Minneapolis, MN 55401-2499
(612) 371-1111 x480
+--- | This is the Midrange System Mailing List! | To submit a new message, send your mail to "JAVA400-L@midrange.com". | To unsubscribe from this list send email to MAJORDOMO@midrange.com | and specify 'unsubscribe JAVA400-L' in the body of your message. | Questions should be directed to the list owner/operator: david@midrange.com +---
As an Amazon Associate we earn from qualifying purchases.