Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ActiveX Control displaying thumbnails

Status
Not open for further replies.

mangocinn

Programmer
Joined
Jul 26, 2001
Messages
66
Location
US
I'm attempting to create an activeX Control that will display thumbnails of several images... the user will select the images that they will use to create slides for a powerpoint presentation. I'm fairly new to visual basic and I'm lost. I'm playing around with ImageList and ListView controls. Can anyone offer me some guidance?

 

There is already a control that does part of what you want. Although it only works with Tiffs. It is the Wang/Kodak ImageThumb control. Take a look at it for ideas.

Good Luck

 
vb5prgrmr,
I was looking into that at first...but I heard that the Kodak thumb control only displays one image at a time...is that true? I need my control to display more than one image at a time...
 

If you have a single page tiff then it will only display one image. If you have a multiple page tiff then it should display a thumb for each page/image.

[tt]
ThumbCount Property

Returns the total number of pages present in the current image file.

Available With

Imaging for Windows Professional Edition V1.0, V1.1, and V2.0
Imaging for Windows 95 and 98
Imaging for Windows NT 4.0
Applies To

Image Thumbnail control

Syntax

object.ThumbCount

Data Type Long

Remarks

Available at run-time as read-only.
ThumbCount is recalculated each time a valid image is specified, or when either of the methods InsertThumbs or DeleteThumbs is executed.
[/tt]

Granted, this is just the count property but I think once you start playing around with it you will be able to use it for ideas as mentioned before.

Good Luck

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top