need java coding

1.how to create applets & jframes?2. How to change background of aplpets & Jframe
[103 byte] By [mukesh1977a] at [2007-11-27 6:55:12]
# 1

> 1.how to create applets & jframes?

Applet applet = new Applet();

JFrame frame = new JFrame();

> 2. How to change background of aplpets & Jframe

applet.getContentPane().setBackground(Color.black);

frame.getContentPane().setBackground(Color.black);

CaptainMorgan08a at 2007-7-12 18:30:34 > top of Java-index,Java Essentials,Java Programming...
# 2
Thanks alot for your help u have solved my problem.
mukesh1977a at 2007-7-12 18:30:34 > top of Java-index,Java Essentials,Java Programming...