Icon TaskBar « Applet « Java Swing Q&A





1. adding image in japplet    stackoverflow.com

    ImageIcon icon= new ImageIcon("a.gif");
    JLabel jLabel1=new JLabel(icon);
    jLabel1.setVisible(true);
    card1.add(jLabel1);
I am a newbie to Java and I am facing ...

3. Icons not visible in applet    coderanch.com