How to add images into Flowlayout?
Dear friends:
How to add images into Flowlayout?
I cannot add images into flowlayout with code:
JPanel panel =new JPanel(new FlowLayout(FlowLayout.LEFT, 4, 3));
pic1 =new DTPicture(createImageIcon("images/" + dad +".GIF",dad).getImage());
pic1.setTransferHandler(picHandler);
panel.add(pic1);
pic2 =new DTPicture(createImageIcon("images/" + mom +".GIF",mom).getImage());
pic2.setTransferHandler(picHandler);
panel.add(pic2);
pic3 =new DTPicture(createImageIcon("images/" + kid +".GIF",kid).getImage());
pic3.setTransferHandler(picHandler);
panel.add(pic3);
setPreferredSize(new Dimension(440, 330));
add(panel, BorderLayout.CENTER);
but show onthing but only small dot, not images I need,
what is wrong here?
Thanks
sunny

