Hi,
following code snippet Displays "Send" pop-up list query and returns the user selection.
CSendUi* iSend = CSendUi::NewL();
CleanupStack::PushL(iSend);
TSendingCapabilities MySendCapa;
MySendCapa.iFlags = TSendingCapabilities::EAllServices;
TUid MyServiceUid = iSend->ShowSendQueryL();
CleanupStack::PopAndDestroy();
can i write some plug-in application to extend this dialog, for example if i want to add another option in the query list such as "Via ABC", can i add?






