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

Form Importancy?



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old December 11th 06, 07:04 PM posted to microsoft.public.outlook.program_forms
Lime
external usenet poster
 
Posts: 26
Default Form Importancy?

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  
Old December 11th 06, 08:42 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Form Importancy?

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  
Old December 12th 06, 02:00 AM posted to microsoft.public.outlook.program_forms
Lime
external usenet poster
 
Posts: 26
Default Form Importancy?

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  
Old December 12th 06, 02:11 AM posted to microsoft.public.outlook.program_forms
Lime
external usenet poster
 
Posts: 26
Default Form Importancy?

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

  #6  
Old December 12th 06, 01:48 PM posted to microsoft.public.outlook.program_forms
Lime
external usenet poster
 
Posts: 26
Default Form Importancy?

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  
Old December 12th 06, 01:55 PM posted to microsoft.public.outlook.program_forms
Lime
external usenet poster
 
Posts: 26
Default Form Importancy?

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


All times are GMT +1. The time now is 05:54 AM.


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.