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

Outlook Remainder setting



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old January 17th 06, 06:41 AM posted to microsoft.public.outlook.program_vba
Amirineni Chaitanya
external usenet poster
 
Posts: 1
Default Outlook Remainder setting

I am trying to create an Outlook task (in Outlook 2000) and then assign it to
another user. This seems to work OK, however, it never seems to set up the
reminder details. However, if i assign it so someone else then only the due
date is
sent. How to set remainder
I have provided a code snippet below which I am trying to make work.

Regards
Amirineni Chaitanya

Set oTask = oTaskFolder.Items.Add("IPM.Task")
With oTask

' store the each task item details

.Subject = strTaskName
.Body = strTaskBody
.DueDate = strDueDate
.PercentComplete = strCompPercent
.ReminderTime = strReminderDate
.ReminderSet = True

.UserProperties.Add "TaskID", olText
.UserProperties("TaskID") = strTaskId

.UserProperties.Add "AssignedTo", olText
.UserProperties("AssignedTo") = strDisplayName
End With

' send the task

oTask.Recipients.Add (strAssignTo)
oTask.ReminderSet = True
oTask.ReminderTime = strReminderDate
oTask.ReminderOverrideDefault = True
oTask.ReminderPlaySound = True
oTask.Assign
oTask.Send
Ads
  #2  
Old February 1st 06, 04:45 PM posted to microsoft.public.outlook.program_vba
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Outlook Remainder setting

This is normal behavior. You cannot set reminders for other people. Only they can.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx


"Amirineni Chaitanya" Amirineni wrote in message ...
I am trying to create an Outlook task (in Outlook 2000) and then assign it to
another user. This seems to work OK, however, it never seems to set up the
reminder details. However, if i assign it so someone else then only the due
date is
sent. How to set remainder
I have provided a code snippet below which I am trying to make work.

Regards
Amirineni Chaitanya

Set oTask = oTaskFolder.Items.Add("IPM.Task")
With oTask

' store the each task item details

.Subject = strTaskName
.Body = strTaskBody
.DueDate = strDueDate
.PercentComplete = strCompPercent
.ReminderTime = strReminderDate
.ReminderSet = True

.UserProperties.Add "TaskID", olText
.UserProperties("TaskID") = strTaskId

.UserProperties.Add "AssignedTo", olText
.UserProperties("AssignedTo") = strDisplayName
End With

' send the task

oTask.Recipients.Add (strAssignTo)
oTask.ReminderSet = True
oTask.ReminderTime = strReminderDate
oTask.ReminderOverrideDefault = True
oTask.ReminderPlaySound = True
oTask.Assign
oTask.Send

 




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
Import outlook setting faeiz2 Outlook - General Queries 2 March 4th 06 01:42 PM
Any suggestions for setting up Outlook with peoplepc penylayn Outlook - Installation 3 March 1st 06 05:56 PM
Is there a policy or registry setting for setting the default addr scsi Outlook - Installation 1 February 28th 06 01:19 PM
setting up another user on outlook sayam Outlook - Installation 0 January 20th 06 07:31 PM
Setting up Microsoft Outlook 2000 Mandy Outlook - General Queries 1 January 16th 06 12:00 AM


All times are GMT +1. The time now is 05:24 AM.


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.