Dec 8, 2002 #1 napoleao IS-IT--Management Feb 20, 2002 172 PT Anyone know how to insert a simple background picture in your form, I have looked everywhere for help but without luck.
Anyone know how to insert a simple background picture in your form, I have looked everywhere for help but without luck.
Jan 6, 2003 #2 owls Instructor Oct 10, 2002 23 US You can use a label to bring in an image as follows: There is no property setting in the properties window for image so the image must be loaded into the label through code using the following: jLabel1.setIcon(new ImageIcon("L:/pictures/myPicture.JPG"); Upvote 0 Downvote
You can use a label to bring in an image as follows: There is no property setting in the properties window for image so the image must be loaded into the label through code using the following: jLabel1.setIcon(new ImageIcon("L:/pictures/myPicture.JPG");
Jan 7, 2003 Thread starter #3 napoleao IS-IT--Management Feb 20, 2002 172 PT thanks for the help Upvote 0 Downvote