A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook and VBA
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

How can i set the follow up reminder time programatically?



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old November 23rd 07, 09:09 PM posted to microsoft.public.outlook.program_vba
Levarish
external usenet poster
 
Posts: 1
Default How can i set the follow up reminder time programatically?

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
Ads
  #2  
Old November 26th 07, 06:47 AM posted to microsoft.public.outlook.program_vba
Michael Bauer [MVP - Outlook]
external usenet poster
 
Posts: 1,885
Default How can i set the follow up reminder time programatically?



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:

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

 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Update Outlook reminder dialog programatically j Add-ins for Outlook 7 February 19th 07 10:38 PM
Refresh Outlook's reminder dialog programatically j Add-ins for Outlook 0 February 15th 07 01:32 PM
How to suppress Reminder dialog box programatically UB Outlook - General Queries 0 December 11th 06 10:56 AM
Adding Follow Up field to Field Chooser Programatically. c Outlook and VBA 3 February 25th 06 02:10 PM


All times are GMT +1. The time now is 03:38 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.