how to change the image in title bar for JFrames
plz give me a small code to change the image of the JFrame in the Title bar.
i know how to change the name of the title bar .
import javax.swing.*;
class Rathna1 extends JFrame
{
Rathna1()
{
super("rathna project ");
}
}
public class Rathna
{
public static void main(String ax[])throws Exception
{
Rathna1 r=new Rathna1();
r.setVisible(true);
r.setSize(400,400);
}
}
Like this how to change the image of the title bar
Message was edited by:
therathna

