Specifies the verbs to be registered for an application.
Registry Entry
HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID
\Verb
\1 =
<verb1>
\2 = <verb2>
\3 =
Value Entries
See IOleObject::DoVerb for general information about verbs, descriptions of OLE predefined verbs, and positive and negative verbs, plus other material.
Remarks
Verbs must be numbered consecutively. The first value after the verb string describes how the verb is appended by an AppendMenu function call.
The second value indicates whether the verb will dirty the object. It also indicates whether the verb should appear in the menu, as defined by OLEVERBATTRIB enumeration, used by the OLEVERB structure.
For still more information, see IOleObject::EnumVerbs and OleRegEnumVerbs.
Following are two example entries:
Verb 0: “Edit”, MF_UNCHECKED | MF_ENABLED, no OLEVERATTRIB flags:
HKEY_CLASSES_ROOT\CLSID\{00000402-0000-0000-C000-000000000046} \Verb\0 = &Edit,0,0
Verb 1: “Open”, MF_UNCHECKED | MF_ENABLED, no OLEVERATTRIB flags:
HKEY_CLASSES_ROOT\CLSID\{00000402-0000-0000-C000-000000000046} \Verb\1 = &Open,0,0
See Also
IOleObject::EnumVerbs, OleRegEnumVerbs, AppendMenu, OLEVERB, OLEVERBATTRIB