![]() |
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. |
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
![]()
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 |
#2
|
|||
|
|||
![]()
Why didn't you respond to my last post in your earlier thread on this topic?
-- 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 ... 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 |
#3
|
|||
|
|||
![]()
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 |
#4
|
|||
|
|||
![]()
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 |
#5
|
|||
|
|||
![]()
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 |
#6
|
|||
|
|||
![]()
WOW!! your are truely the BEST!! Thank you.
One more question. What if I wanted to included Stat or Routine than Importance High? "Sue Mosher [MVP-Outlook]" wrote: 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 |
#7
|
|||
|
|||
![]()
Nevermind I got it. Thak again Sue you are the Greatest. your willingnesss to
help other is comedable. "Lime" wrote: WOW!! your are truely the BEST!! Thank you. One more question. What if I wanted to included Stat or Routine than Importance High? "Sue Mosher [MVP-Outlook]" wrote: 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 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
From send importancy? | Lime | Outlook and VBA | 6 | December 9th 06 08:48 PM |
How to replace Default Contact form with Customised conact form using VBScript code | Satish Boddapati | Outlook - Using Contacts | 0 | October 12th 06 08:20 AM |
How to replace Default Contact form with Customised conact form using VBScript code | Satish Boddapati | Outlook - Installation | 0 | October 12th 06 08:19 AM |
Custom Form - Receiver replies and form is gone, message body is b | Kozlik | Outlook - Using Forms | 16 | July 14th 06 09:32 PM |
OL2003 - can you auto-fill a singel new contact form with online form data | TimR | Outlook - Using Contacts | 1 | February 15th 06 01:43 PM |