views:

186

answers:

1

I have a file format I need to be able to show in explorer thumbnails. Since the target system is windows XP, the Vista PreviewHandler API will not be suitable. Ill be using c++.

How would I do it?

+2  A: 

You'll need to register a shell extension for your file type. The extension contains code that extracts/generates the thumbnail by implementing the IExtractImage interface.

See: IExtractImage Interface on MSDN

Aaron Saarela
http://www.angelfire.com/80s/philipsoft/files/ThumbExtract.htm I found this based on your answer
Tom J Nowell