Posted By:
Narasimhan_Madhusudhanan
Posted On:
Thursday, July 24, 2003 03:44 AM
hi..
yes, it is possible to put the image on the button, if u r using JButton. Use setIcon(ImageIcon);
sample code:
ImageIcon icon = new ImageIcon("d:....sample.gif");
JButton button = new JButton();
button.setIcon(icon);
button.setSize(icon.getWidth(),icon.getHeight());
Surely it will work.
Revert back, if you have any queries.
N.Madhusudhanan