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 - Using Forms
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Follow up Flag Error



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old May 3rd 06, 04:31 PM posted to microsoft.public.outlook.program_forms
A Don
external usenet poster
 
Posts: 7
Default Follow up Flag Error

I originally submitted the below....

************************************************** **********

A Don" wrote:

Hi there,

I have been asked to develop a custom form (Outlook 2003) which requires a
follow up flag to be generated 1 hour after it is received by the recipient.

I have managed to trigger the flag automtically using the following code in
the
Send Mail function however this only flags up as soon as the mail is opened.

Function Item_Send()

'validate the fields before sending
Item_Send = False
if DoValidation Then

'set the importance & flag
Importance = 2
FlagStatus = 2
FlagRequest = "Follow Up " & Item.Subject
FlagDueBy = Now()
Item_Send = True
Else
Exit Function
End If
End Function

Reading other forums it is apparent that this is possible using the
DateAdd() function, however I'm not too sure how this works.

Does anyone out there have any ideas ?



Post 2

I think I've cracked it - I've changed 1 line of code

FlagDueBy = DateAdd("n",60, Now)

************************************************** ********
I now have an issue with users still using Outlook 2000 - When they populate
the form and go to send it a message appears

'The date & time on the follow-up flag for this message have passed. Do you
still want to send it?'

When yes is selected the mail is sent as normal, and the flag is picked up
fine in the recipients mailbox So the code is working as it should.

Does anyone know what might be causing this..it works fine in Outlook 2003
and produces no prompt.

Thanks


Ads
  #2  
Old May 3rd 06, 07:38 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Follow up Flag Error

Outlook 2000 and 2003 simply handle message flags differently.

--
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

"A Don" wrote in message ...
I originally submitted the below....

************************************************** **********

A Don" wrote:

Hi there,

I have been asked to develop a custom form (Outlook 2003) which requires a
follow up flag to be generated 1 hour after it is received by the recipient.

I have managed to trigger the flag automtically using the following code in
the
Send Mail function however this only flags up as soon as the mail is opened.

Function Item_Send()

'validate the fields before sending
Item_Send = False
if DoValidation Then

'set the importance & flag
Importance = 2
FlagStatus = 2
FlagRequest = "Follow Up " & Item.Subject
FlagDueBy = Now()
Item_Send = True
Else
Exit Function
End If
End Function

Reading other forums it is apparent that this is possible using the
DateAdd() function, however I'm not too sure how this works.

Does anyone out there have any ideas ?



Post 2

I think I've cracked it - I've changed 1 line of code

FlagDueBy = DateAdd("n",60, Now)

************************************************** ********
I now have an issue with users still using Outlook 2000 - When they populate
the form and go to send it a message appears

'The date & time on the follow-up flag for this message have passed. Do you
still want to send it?'

When yes is selected the mail is sent as normal, and the flag is picked up
fine in the recipients mailbox So the code is working as it should.

Does anyone know what might be causing this..it works fine in Outlook 2003
and produces no prompt.

Thanks


  #3  
Old May 4th 06, 10:56 AM posted to microsoft.public.outlook.program_forms
Murray
external usenet poster
 
Posts: 10
Default Follow up Flag Error

So is there a work around for this Sue or is it one of these Microsoft things
we just have to live with?

thanks
--
M. Paton
Support Analyst


"Sue Mosher [MVP-Outlook]" wrote:

Outlook 2000 and 2003 simply handle message flags differently.

--
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

"A Don" wrote in message ...
I originally submitted the below....

************************************************** **********

A Don" wrote:

Hi there,

I have been asked to develop a custom form (Outlook 2003) which requires a
follow up flag to be generated 1 hour after it is received by the recipient.

I have managed to trigger the flag automtically using the following code in
the
Send Mail function however this only flags up as soon as the mail is opened.

Function Item_Send()

'validate the fields before sending
Item_Send = False
if DoValidation Then

'set the importance & flag
Importance = 2
FlagStatus = 2
FlagRequest = "Follow Up " & Item.Subject
FlagDueBy = Now()
Item_Send = True
Else
Exit Function
End If
End Function

Reading other forums it is apparent that this is possible using the
DateAdd() function, however I'm not too sure how this works.

Does anyone out there have any ideas ?



Post 2

I think I've cracked it - I've changed 1 line of code

FlagDueBy = DateAdd("n",60, Now)

************************************************** ********
I now have an issue with users still using Outlook 2000 - When they populate
the form and go to send it a message appears

'The date & time on the follow-up flag for this message have passed. Do you
still want to send it?'

When yes is selected the mail is sent as normal, and the flag is picked up
fine in the recipients mailbox So the code is working as it should.

Does anyone know what might be causing this..it works fine in Outlook 2003
and produces no prompt.

Thanks



  #4  
Old May 4th 06, 01:14 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Follow up Flag Error

I think you have to live with it.

--
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

"Murray" wrote in message ...
So is there a work around for this Sue or is it one of these Microsoft things
we just have to live with?

thanks
--
M. Paton
Support Analyst


"Sue Mosher [MVP-Outlook]" wrote:

Outlook 2000 and 2003 simply handle message flags differently.



"A Don" wrote in message ...
I originally submitted the below....

************************************************** **********

A Don" wrote:

Hi there,

I have been asked to develop a custom form (Outlook 2003) which requires a
follow up flag to be generated 1 hour after it is received by the recipient.

I have managed to trigger the flag automtically using the following code in
the
Send Mail function however this only flags up as soon as the mail is opened.

Function Item_Send()

'validate the fields before sending
Item_Send = False
if DoValidation Then

'set the importance & flag
Importance = 2
FlagStatus = 2
FlagRequest = "Follow Up " & Item.Subject
FlagDueBy = Now()
Item_Send = True
Else
Exit Function
End If
End Function

Reading other forums it is apparent that this is possible using the
DateAdd() function, however I'm not too sure how this works.

Does anyone out there have any ideas ?



Post 2

I think I've cracked it - I've changed 1 line of code

FlagDueBy = DateAdd("n",60, Now)

************************************************** ********
I now have an issue with users still using Outlook 2000 - When they populate
the form and go to send it a message appears

'The date & time on the follow-up flag for this message have passed. Do you
still want to send it?'

When yes is selected the mail is sent as normal, and the flag is picked up
fine in the recipients mailbox So the code is working as it should.

Does anyone know what might be causing this..it works fine in Outlook 2003
and produces no prompt.

Thanks



 




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
flag to follow up not working mel waite Outlook - Using Forms 1 May 3rd 06 03:26 PM
flag to follow up not working mel waite Outlook - Using Contacts 2 April 10th 06 10:35 AM
flag to follow up not working mel waite Outlook - General Queries 0 April 9th 06 02:37 PM
Follow up Flag JCO Outlook - General Queries 11 March 23rd 06 03:33 PM
Follow-up Flag Reminders do not pop up!!!! JML Outlook - General Queries 0 January 16th 06 03:41 AM


All times are GMT +1. The time now is 12:48 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.