WIndows API Timer operations / wrapper class ?

  • Thread starter Thread starter soworl
  • Start date Start date
S

soworl

Hello,

I need some advice about below issue.
Welcome useful link.

Thanks,
soworl

=================================================
For that scenario, you could use a wrapper class to maintain references to
multiple appointments. (All the best Outlook add-in samples use wrapper
classes.) Or, since you don't need events, you could maintain a collection of
just EntryID and time values.

If that doesn't help, I'd suggest you start a new discussion thread, since
you've shifted the focus of this one considerably and I'm no expert in
WIndows API Timer operations.


--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54
 
When you start a new thread please just post what's relevant for the thread
so we don't have to study a very long message to find what you're asking
about.

From what I can gather you want a way to have the timer code know what item
is involved? There are a few ways to do that. You can pass a reference to
the item to the modTimer code or even to the class when you instantiate it,
you can have a global object that the timer code can look at, you can set up
a collection of EntryID's of the item or items you want and have the timer
code retrieve those and instantiate the items represented by the EntryID's
and then remove them from the collection after they are handled.

That's just off the top of my head, I'm sure I could think of other ways but
those should be sufficient to give you an idea.
 
Back
Top