DISPLAY many picture
I want to display many picture (gif, jpg) in a window with their names (all to be shrink to the same size). i also want to be able to select one of the pictures (just one at a time). how can I do it?(p.s- the problem is with the way to display them, no to laod from the Hard
[297 byte] By [
NMBa] at [2007-10-3 4:09:07]

Use a JComponent such as JPanel to provide the drawing surface, get its Graphics using JComponent.getGraphics, then you can use the Graphics methods drawImage and drawString to draw on it. You can rescale the images with drawImage.