Adding a tab to default Properties' window of image files
Asked Answered
E

1

9

I want to add a tab to Properties dialog of image files in Windows 7.

I have many family images and I'd like see the details of each images with a tab in window's properties.

Details like 'Camera Model', 'Date Taken' and so on in Persian date.

How can this be done?

Emmen answered 3/11, 2011 at 6:2 Comment(0)
P
8

To do this you need to implement and install a "shell extension" (which basically are a bunch of COM interfaces)...

Remark: If the system you are running on doesn't have .NET 4 then Microsoft recommended NOT to use .NET for this because of the inherent restriction with the older versions that one process can't run multiple framework versions at the same time. Depending on the OS etc. case it could be recommended to implement this with C/C++.

In this specific case you need to build a shell extension which implements IShellPropSheetExt.

That aside the implementation of shell extension is a really tough job... some links with information / samples / source code / libraries etc.:

Pinochle answered 3/11, 2011 at 6:13 Comment(2)
Is there a component to do that easily :-)Emmen
yes - follow the links esp. the third link (ssware.com/ezshell/ezshell.htm) has a (commercial) component named EZshell which even comes with a VS wizard etc.Pinochle

© 2022 - 2024 — McMap. All rights reserved.