Click to See Complete Forum and Search --> : Question


Rstratton
02-09-2005, 09:12 AM
Hello I Have A Question;

Could You Tell Me How To Have A Text Box With Color Background?

Khalid Ali
02-09-2005, 11:14 AM
your question seems to be in wrong forum.Please post it in the CSS forums.

Rstratton
02-12-2005, 11:31 AM
Thanks

buntine
02-12-2005, 09:27 PM
Unless you were referring to a JTextField. In that case, you would:

JtextField txtField = new JTextField();
txtField.setBackgrond(new Color(100, 200, 220));

The floats are reg, green, and blue values.

Regards.