views:

1248

answers:

1

could you please point c++ code example to display videos and images thumbnails in listview?

+2  A: 

I can help with images, but not videos:

http://www.codeproject.com/KB/GDI-plus/GdiPThumbnailsViewer.aspx

Basically you use a normal list control and add the images to an associated image list. There are some gotchas though - looks like you have to use the CImageView::ReplaceImage instead of CImageView::AddImage, else the images don't appear correctly. Masking the image may also require some work.

Rob
very usefull link - thank you! - i have no points to vote for your answer - but the link is a greate example - i google a lot of time but can't find it!