I am writing an MTM, and I would like to add an entry in the "Send as" submenu of apps like Word, Sheet, and others that have a "Send as" menu entry in the file menu.
I am told that by adding the next lines to my resource file, this entry would appear.
// MTM-specific function array
RESOURCE MTUD_FUNCTION_ARRAY r_function_array
{
functions = {
MTUD_FUNCTION
{
functiontext = "My Send as entry";
command = KMtmUiFunctionSendAs;
flags = EMtudCommandSendAs;
},
// etc
Unfortunately, no entry. I only see the UiData::QueryCapability() method being called with the CanSend capability UID.
I would like full details on how to add the "Send as" functionality to my MTM
Posted by Sander van der Wal, svdwal@mBrainSoftware.com
on February 04, 2002 at 18:06





