CSCI 4800/6800
Project 0: DVD Order Form
Assigned: Tuesday, January 16th
Due: ??? -- won't be collected, try it soon
0 points
Goals:
By the end of this lab, you should...
- be familiar with a variety of graphical user interface components
- understand and be able to appropriately employ event handling techniques
- have acquired experience with event-based programming and user interaction techniques
The Project:
You will implement a Java application that permits a user to enter
the following information in text fields of appropriate size:
- Name
- Address Line 1
- Address Line 2
- City
- State
- Zip
and displays a radio button group that permits users to select one
of three DVDs:
- Employee of the Month
- Gridiron Gang
- Seven Swords
The UI should also contain a "Submit" button. The program should
then pop up a message dialog that says "A copy of $selected_dvd
will be sent to $name".
It is okay to use FlowLayout -- it will look ugly, but is okay for these purposes. You can use a combobox for the State field, if you like.
Eileen Kraemer(eileen@cs.uga.edu)