joinJpegs
joinJpegs

Reputation: 1297

How to extend windows explorer functionality?

How would I go about extending the functionality of windows explorer in XP?

Is there some way whereby I could create a "plugin" of some sorts that could hook into explore.exe to add additional folder browsing functionality? What language could I use to achieve this?

This is an expansion of a question I asked here.

Upvotes: 1

Views: 4000

Answers (2)

ConcernedOfTunbridgeWells
ConcernedOfTunbridgeWells

Reputation: 66612

There is an old O'reilly book called 'Visual Basic Shell Programming' that explains the API's for this in some detail. While taken from a VB6-centric point of view, the API's are all exposed through COM, so they can be used from any language that supports this. This article discusses using the windows shell with .Net and a tool to build an interop assembly.

Upvotes: 0

Anton Gogolev
Anton Gogolev

Reputation: 115731

There's a great series of tutorials on CodeProject which might help you. C++ is required there.

Upvotes: 3

Related Questions