Is it possible to add the verb that was clicked as an argument to the called program? Seems it should be possible:
IFACEMETHODIMP Initialize(PCWSTR /* pszCommandName */, IPropertyBag * /* ppb */)
{
// The verb name is in pszCommandName, this handler can varry its behavior
// based on the command name (implementing different verbs) or the
// data stored under that verb in the registry can be read via ppb
return S_OK;
}
Having some issues compiling the program so am unable to add it myself.
Is it possible to add the verb that was clicked as an argument to the called program? Seems it should be possible:
Having some issues compiling the program so am unable to add it myself.