Re: How do I replace the Java cup icon for my application ?
Posted By:
Geetha_Srinidhi
Posted On:
Wednesday, August 29, 2001 09:16 PM
Thanks to all of you. It worked.
Re: How do I replace the Java cup icon for my application ?
Posted By:
Briti_Nandy
Posted On:
Wednesday, August 29, 2001 10:50 AM
frame.setIconImage(new ImageIcon("someicon.gif").getImage());
Re: How do I replace the Java cup icon for my application ?
Posted By:
sai_reddy
Posted On:
Wednesday, August 29, 2001 12:44 AM
ImageIcon icon = new ImageIcon ("C:\ICONS\sample.gif" );
this.setIconImage( icon.getImage());