
Outlook 'send and receive'
Well. Since there's no true Server-Sync event (in the Send/Receive manner
of thinking), you can capture the click on that button (I go through and
replace all the buttons I want to catch with ones that LOOK the same, but
have a different ID and ProgID so I get the notification...then I
pre-process the click and forward it to the original button, which I have
copied and hidden on my own toolbar). You can also setup a background
thread to wait every "n" minutes and sync your SMS messages in the
background. I have a couple of threads spawned from my outlook add-in that
use the windows "wait" functions to watch for changes in Procedures,
Windows, Files, etc.
The bottom-line is it's not as easy as you would think/hope.
--AJ
Quote:
> I want to send and receive Mobile SMS messages in addition to mails. I'v
> everything ready with me for sending SMs msg. I Only need to integrate it
> with Outlook such that whenever 'Send and Receive' occurs(1. when toolbar
> button/menu is clicked, 2. after certain interval of time e.g. every 10
> minutes or every 20 minutes) my app sud also send and receive SMS
messages.
> i hope this explains the problem
> -----------
> > Extend in what sense?
> > Dmitry Streblechenko (MVP)
> > http://www.dimastr.com/
> > OutlookSpy - Outlook, CDO
> > and MAPI Developer Tool
Quote:
> > > hi all,
> > > i want to extend functionality of 'send and receive' feature in MS
> Outlook.
> > > how sud i proceed
> > > tx