When you do an Insert|picture, you get that open dialog that has an option to
show details, list, small icons, large icons and preview.
When you do preview, you can see the picture, but it's one at a time. If that's
ok, you can use something like this:
Option Explicit
Sub testme()
Dim myFileName As Variant
myFileName = Application.GetOpenFilename
If myFileName = False Then
'user hit cancel
Exit Sub '??
End If
'Then Bob's code
ActiveSheet.Pictures.Insert filename:=myfilename
End Sub
(If you use windows XP, can't you see the pictures as bitmaps in the open
dialog? (I don't use winXP.))
But I do use a very nice program called Irfanview. It's at:
http://www.irfanview.com