CePimCommand function : Finding out what menu option invoked it ...

  • Thread starter Thread starter Venkat Polisetti
  • Start date Start date
V

Venkat Polisetti

I have written a C++ dll that is attached to the Pocket Outlook menu as a
new menu extension item.

Is there a way for the CePimCommand that is defined in the dll to know what
the menu option that invoked it ? I am looking for a way to send a message
to another app when this dll is invoked.

Thanks,
Venkat Polisetti
 
Since the CePimCommand mechanism is only designed to be used for one menu
extension it doesn't provide functionality to determine from where it was
called. It is possible to use a single CePimCommand.dll for multiple apps
(Appointments, Contacts and Tasks) since the item type and Oid are both
passed to the function so you can take different actions based on the type.

Peter
 
Back
Top