Background Image
Hi Sun Team and Swing Fans !
Well I have the following code:
public class dataTable extends JApplet {
..bla bla .bla boring stuff!!!
public void init () {
Container contentPane = getContentPane();
contentPane.setLayout(new FlowLayout());
contentPane.setLayout(null);
contentPane.setBackground(new java.awt.Color (0, 153, 153));
..bla bla more boring stuff!!!
}
Is it possible, instead of setting a background color, to set a background image, like the background of my layout panel would be an image instead of a color. If yes how would I implement it? (I really would appreciate some code examples please.)
Somebody replied to my earlier posting but unfortunately after the image is loaded it looks like I cannot add any other component on top of that image. I should be able to add a textbox ..or textfield..and so on.. with the image in the background.
Thank you very much in advance, Albert.

