I have this code:
public DesktopApplication1View(SingleFrameApplication app)
{
super(app);
pbu.registriere(this);
ImageIcon icon = new ImageIcon("resources/BilKa_Icon_32.png");
this.getFrame().setIconImage(icon.getImage());
initComponents();
Im wondering why the image icon doesnt show up on the top left of the app window. It`s still the Java cup of coffee logo instead.
Is there anything wrong?
Thank you