ISMagazine.com

Developer's Corner

June, 1999

A Java Applet routine to place text in the Status Bar.

import java.awt.*;
import java.applet.*;
import java.net.*;

public class NetscapePrint extends Applet {
TextField textField = new TextField("Type Something Here!", 20);
String string;

public NetscapePrint() {
add(textField);
}

public boolean action(Event evt, Object arg) {
string = arg.toString();
getAppletContext().showStatus(string);
return true;
}
}

National Book eXchange

The Online College Book Exchange

Exchange your college textbooks with students from across the country and around the world. Post your current books, old edition books, classroom materials, and optional study guides for any college course.

Determine the price you want or negotiate through email with interested students


www.angelfire.com/biz/nationalbx

1 2 3 4 5 6 7 8 9 11 12 13 14 15 16