vote up 3 vote down star
2

OK,

I want to create a windows shell extention that sits in the file menu much like the "Tortorise SVN" menu.

Does anyone know where I'd begin, a good article, or what interfaces to implement?

Thanks!

flag

39% accept rate
Trust me: tags on stackoverflow are for categorization. They shouldn't tell a story or summarize the question. See this faq item: stackoverflow.com/questions/229784/… – Joel Coehoorn Dec 19 '08 at 22:13
Ah, I couldn't tell what you edited, the page didn't say. – Chris Dec 23 '08 at 14:57

4 Answers

vote up 4 vote down check

It's pretty straight forward actually. It's about a 3-4 step process. You didn't specify what language you were using.

Here's how to do it in native code:

http://www.kbcafe.com/articles/HowTo.Shell.pdf

Here's how to do it with .NET. Note that it is essentially the same as doing it with native code.

http://www.theserverside.net/tt/articles/showarticle.tss?id=ShellExtensions

link|flag
I would like to write the add-in in Managed Code, but I'm prepared to resurrect my C++ skills to write the add-in code. Thanks for the help, it was much needed. – Chris Dec 19 '08 at 21:56
vote up 1 vote down

Ah... Shell extensions... they can be a real pain in the butt if they're complicated, but you can do so much neat stuff. A great place to start is Mike Dunn's Complete Idiot's Guide To Writing Shell Extensions on codeproject.com.

link|flag
Mike Dunn's articles are great. Can't believe I forgot about that. – BobbyShaftoe Dec 20 '08 at 4:55
vote up 0 vote down

There's an O'Reilly book called VB Shell Programming which goes into the API's in some depth. As the title suggests, it's aimed at Visual BASIC, but the API's are exposed through COM and the techniques discussed in the book are applicable for pretty much anything that supports COM. A quick look on Amazon.com suggests you can probably pick up a secondhand copy for a few dollars.

link|flag
vote up 0 vote down

Avoid codeproject (for kids, full of bugs) and read the complete doc of MSDN on SNE.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.