|
ROGERS CADENHEAD
My Projects
Workbench
SportsFilter
Drudge Retort
Watching the Watchers
RSS Spec
My Java Books
Teach Yourself Java 6 in 21 Days
Teach Yourself Programming with Java in 24 Hours, Fourth Edition
Teach Yourself Java 2 in 21 Days, Fourth Edition
Teach Yourself Java 2 in 21 Days Pro Reference Edition, Third Edition
Teach Yourself Java 2 in 24 Hours, Third Edition
My Weblogging Books
Movable Type 3 Bible Desktop Edition
Radio UserLand Kick Start
My Internet Books
Teach Yourself FrontPage 2003 in 24 Hours
|
Day 14: Developing Advanced User Interfaces with the AWT
NOTES AND CORRECTIONS
- Pages 357-359: A bug in JDK 1.2 Beta 3 is causing TextField
components to default to a background color of black on Windows
systems instead of white. This causes the text to be unreadable in
the Dialog Objects project that begins on Page 357. A workaround
for this problem is to explicitly set the background color of the
component before adding it to a container. To do this in the
TextDialog class, add the following statement between Lines 13 and
14 of Listing 14.3:
- tf.setBackground(Color.white);
SOURCE FILES
READER QUESTIONS
LINKS
|