Reputation: 18295
How do you add an item to the system context menu? I would like to let my users be able to right click anywhere and launch this program. I cannot seem to find it documented anywhere either.
Thanks for your help!
I am coding in vb.net
Upvotes: 0
Views: 530
Reputation: 754763
What you're looking for is creating a Shell Extension Handler for Windows Explorer.
Unfortunately doing this in a .Net application is a bit of a problem due to the way in which the CLR is loaded for COM plug-in style extensions. Raymond did a great job of exploring this problem here
Upvotes: 1