Is it possible in VB to add an item to the context sensitive menu, like Winzip does, for example?
Printable View
Is it possible in VB to add an item to the context sensitive menu, like Winzip does, for example?
It's a registry thang. You need to either merge a .reg file, or set the registry settings using VB. Something like (and this was taken from a reg file)
[HKEY_CLASSES_ROOT\*\Shell\xxxShare]
@="&Distribute Update File..."
[HKEY_CLASSES_ROOT\*\Shell\xxxShare\Command]
@="\"d:\\program files\\redgum\\rgtodo.exe\" \"%1\""
- gaffa