customizing the JFrame icon

Need help to develop a jFrame with cusomized icon and assigns that icon for all windows launched from the parent.
[127 byte] By [nageswararaov] at [2007-9-26 1:56:59]
# 1
Try this :ImageIcon imageicon = new ImageIcon(getClass().getResource("/newIcon.gif"));Frame.setIconImage(imageicon.getImage());Your newIcon.gif should be put as a resource.
JAVA-GUY at 2007-6-29 3:13:01 > top of Java-index,Archived Forums,Swing...