View Single Post
  #5  
Old December 12th 06, 02:54 AM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Form Importancy?

The easiest solution in that case is to put code in the Item_Send event:

Function Item_Send()
Const olImportanceHigh = 2
If Item.UserProperties("name_of_your_field") = "Stat" Then
Item.Importance = olImportanceHigh
End If
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

"Lime" wrote in message ...
Crap.. I am sorry It bound to a user defined feild.

"Lime" wrote:

yes I did, I responded unbound. But I did not hear back from you.

"Lime" wrote:

Hello All,
Is it possible that if combox5 has a value of "Stat" to automatically have
the importancy exclamation triggered? and if it is anything other than "Stat"
to send normal? If so any Hints? I am new to this so please be patient

Unbound

Thanks,
Lime

Ads