-
Hi,
New to the forums, I'm a VB Developer of 4 years and Web Developer of 2 years.
Has anyone added right click options to Internet Explorer, by this I mean when you click in the window you see the View Source and Properties options?
Any pointers would be appreciated
Thanks in advance
Paul
-
...pointers...
fount this else where...I haven't trie it but
it could be enought to get you started...or at
least let you know what you have to study...add the following to registry
HKEY_CLASSES_ROOT\*\shellex\ContectMenuHandlers\(YourprogramName)
change the default string to a "unique" class ID (don't ask me how to do this..usually...it only need to be unique....
create HKEY_CLASS_ROOT\CLSID\(unique classID you nominated)
change default string to (YourprogramName)
'add these if you want these functionalities..(pretty self-explanatory)
HKEY_CLASSES_ROOT\Directory\shellex\ContectMenuHandlers\(YourprogramName)
HKEY_CLASSES_ROOT\Directory\shellex\DragDropHandlers\(YourprogramName)
HKEY_CLASSES_ROOT\Folder\shellex\ContectMenuHandlers\(YourprogramName)
HKEY_CLASSES_ROOT\Folder\shellex\DragDropHandlers\(YourprogramName)
HKEY_CLASSES_ROOT\(YourprogramName)\shell\open\command
change the default string value to point to your program (full path) and add "%1" at the end (the parameter)