This week's book giveaway is in the Agile and Other Processes forum.
We're giving away four copies of Darcy DeClute's Scrum Master Certification Guide: The Definitive Resource for Passing the CSM and PSM Exams and have Darcy DeClute on-line!
See this thread for details.

dani3l

Greenhorn
+ Follow
since Nov 04, 2001
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by dani3l

Hi.
In order to run an applet with the appletviewer you'll need to pass an html file containing an HTML applet tag as argument.
So you need to create a simple html file containing an applet tag like this:
<applet code="Text" width="300" height="300"></applet>

A second possibiltiy would be to include a comment to your java file as follows:

Then you can invoke your applet by calling appletviewer with the name of the source file as argument:
appletviewer Text.java

Hope that helps,
Daniel


[This message has been edited by dani3l (edited November 04, 2001).]
22 years ago