Creating GUI in Java
Creating graphical applets in Java is somewhat more difficult than it would be in a visual language like Visual Basic or Dephi (although visual versions of java are available).
All of the following components are found within the javax.swing package which must be imported:
import javax.swing.*;
In Java the programmer has to position visual objects manually. There are three layouts that can be used:
©2003 C. Whittington