How can i set the follow up reminder time programatically?

  • Thread starter Thread starter Levarish
  • Start date Start date
L

Levarish

Hi,
is there a way to add a button with 3 day ahead and default time (like
08:00AM) for the reminder flag?
the regular button is empty by default- which make this task annoing.
Thx
Shahar
 
This adds the date and time to the first selected item in the current view
(assuming that at least one is selected):

Dim Item As Outlook.MailItem
Set Item=Application.ActiveExplorer.Selection(1)
Item.FlagDueBy = Format(DateAdd("d", 3, Date), "mm.dd.yyyy") & " 08:00AM"
Item.Save

--
Best regards
Michael Bauer - MVP Outlook
Synchronize Color Categories & Ensure that Every Item Gets Categorized:
<http://www.vboffice.net/product.html?id=2006063&cmd=detail&lang=en&pub=6>

Am Fri, 23 Nov 2007 13:09:44 -0800 (PST) schrieb Levarish:
 
Back
Top