View Single Post
  #4  
Old March 27th 06, 11:59 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Code to set Flag Status to complete on custom form

Since you said this is a message form, it's pretty simple. You need to use the CustomAction event, something like this:

Function Item_CustomAction(ByVal Action, ByVal NewItem)
olFlagComplete=1
Item.FlagStatus = olFlagComplete
NewItem.Display
End Function

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

"ICT User" wrote in message oups.com...
I have created a custom form which has a couple of voting buttons. When
the form is sent it sets a flag for follow up. I would like to put
some code into the form so when they hit the voting buttons it
automatically sets the flag to complete. I think i have found what i
need - OlFlagStatus and olFlagComplete=1 but as i am not really a coder
and havent done anything like this for a while i am not sure how i
reference everything to the form . Could someone please help and put
me in the right direction.

Many Thanks

Ads