I am trying to flag a message from perticular user.
This property only exists in outlook 2003.Code:myitem.flagicon=---' i can have any color here.
What should i do so that code work on outlook 2000.
Thanks...
Printable View
I am trying to flag a message from perticular user.
This property only exists in outlook 2003.Code:myitem.flagicon=---' i can have any color here.
What should i do so that code work on outlook 2000.
Thanks...
is myitem as MailItem?
Moved to Office Development.
here is what I see in OTL2000
there is nothing about color choices..
VB Code:
msg.FlagRequest = "TEXT HERE FOR FLAG NOTE" msg.FlagDueBy = #12/25/2005# 'Due Date msg.FlagStatus = olFlagMarked 'Marked , Complete, NoFlag
It's perfectly workingCode:msg.FlagStatus = olFlagMarked
Thanks...