Displaying Images from MyPictures

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I have a form which I want to display all the images in the 'MyPictures'
folder automatically when the form loads. I want the images to appear down
the left hand side of my form as thumbnails and when the user selects the
image I want a large version to appear on the right hand side. It would be
ideal if these images could be placed in some kind of collection for use
elsewhere too.

What is the best way to accomplish this?
 
Neil said:
I have a form which I want to display all the images in the 'MyPictures'
folder automatically when the form loads. I want the images to appear down
the left hand side of my form as thumbnails and when the user selects the
image I want a large version to appear on the right hand side.

Thumbnail Extraction Using the Shell
<URL:http://vbaccelerator.com/article.asp?id=4513>

+

\\\
Dim s As String = _
Environment.GetFolderPath( _
Environment.SpecialFolder.MyPictures _
)
///
 
Back
Top