I just realised where this menu is!
C:\WINDOWS\SYSTEM\SHDOCLC.DLL
I resource hacked the .dll file and found the following entry for a popup menu...
POPUP "Control"
{
MENUITEM "&Undo", 43
MENUITEM SEPARATOR
MENUITEM "Cu&t", 16
MENUITEM "&Copy", 15
MENUITEM "&Paste", 26
MENUITEM "&Delete", 17
MENUITEM SEPARATOR
MENUITEM SEPARATOR
MENUITEM "Select &All", 31
}
It does contain two entries for a 'SEPARATOR' after '&Delete' but I'm sure it only shows the one if they're both together like that.
This .dll file must be part of EXPLORER.EXE & IE as I've resource hacked it before to customize the default web pages for DNS ERROR & ACTION CANCELD - res://C:\WINDOWS\SYSTEM\SHDOCLC.DLL/navcancl.htm & res://C:\WINDOWS\SYSTEM\SHDOCLC.DLL/dnserror.htm
Each menu item comes along with a particular code (i.e. '16' for 'cut') but I doubt I'll be able to run specific commands from this after I added my own personalized......
MENUITEM "Clipomatic", VK_V, 9999, CONTROL, ALT, VIRTKEY.
Clipomatics Popup menu uses the Ctrl+Alt+V combination. Would that invoke the Ctrl+Alt+V combo when I clicked on the Clipomatic menu item in the IE text box Popup menu?
What do you guys think?