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 » Add-ins for Outlook
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

User defined fields , field chooser



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old July 4th 07, 01:13 PM posted to microsoft.public.outlook.program_addins
j
external usenet poster
 
Posts: 109
Default User defined fields , field chooser

Hi All,


After creating mailItem, fill it with User defined fields
(UserProperties.Add(........) ) and move it to some folder
it's takes a lot of time when i can see these properties in
fieldChooser -- User defined fields (approximately 30 minutes),
however
when i open Field Chooser in INBOX folder these fields appears
momentary.


Any Suggestions???


TNX in advance

Ads
  #2  
Old July 4th 07, 03:07 PM posted to microsoft.public.outlook.program_addins
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default User defined fields , field chooser

Are you looking under User-defined Fields in Folder? Have you previously defined the fields in that folder?

--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"j" wrote in message oups.com...
Hi All,


After creating mailItem, fill it with User defined fields
(UserProperties.Add(........) ) and move it to some folder
it's takes a lot of time when i can see these properties in
fieldChooser -- User defined fields (approximately 30 minutes),
however
when i open Field Chooser in INBOX folder these fields appears
momentary.


Any Suggestions???


TNX in advance

  #3  
Old July 4th 07, 04:22 PM posted to microsoft.public.outlook.program_addins
j
external usenet poster
 
Posts: 109
Default User defined fields , field chooser

Thanks for replay,

Are you looking under User-defined Fields in Folder?

Yes

Have you previously defined the fields in that folder?

No, these fields are not, after creating mailItem (programatically)
and adding userProperties they appear only under INBOX, and
not under folder to where i moved mailItem.


Ideas ???

Tnx in advance.

  #4  
Old July 4th 07, 04:29 PM posted to microsoft.public.outlook.program_addins
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default User defined fields , field chooser

Add the fields to the folder, manually through the folder's Field Chooser.

--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"j" wrote in message oups.com...
Thanks for replay,

Are you looking under User-defined Fields in Folder?

Yes

Have you previously defined the fields in that folder?

No, these fields are not, after creating mailItem (programatically)
and adding userProperties they appear only under INBOX, and
not under folder to where i moved mailItem.


Ideas ???

Tnx in advance.

  #5  
Old July 4th 07, 06:53 PM posted to microsoft.public.outlook.program_addins
Dmitry Streblechenko
external usenet poster
 
Posts: 2,116
Default User defined fields , field chooser

User defined properties (or rather their definitions) are added to the
parent folder fields when UserProperties.Add is called. When a message is
copied/moved to another folder, it ts custom properties will not be
automatically added to the target folder fields.
Also keep in mind that Outlook is trying to be "helpful" by creating regular
message (MailItem) in the Drafts folder even when you are trying to
explicitly add it to a particular folder other than Drafts by calling
MAPIFolder.Items.Add
plug Redemption allows to explicitly manipulate folder fields definitions
through the RDOFolder2.FolderFields collection
http://www.dimastr.com/redemption/rd...lderFields.htm /plug

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Sue Mosher [MVP-Outlook]" wrote in message
...
Add the fields to the folder, manually through the folder's Field Chooser.

--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"j" wrote in message
oups.com...
Thanks for replay,

Are you looking under User-defined Fields in Folder?

Yes

Have you previously defined the fields in that folder?

No, these fields are not, after creating mailItem (programatically)
and adding userProperties they appear only under INBOX, and
not under folder to where i moved mailItem.


Ideas ???

Tnx in advance.



  #6  
Old July 4th 07, 07:14 PM posted to microsoft.public.outlook.program_addins
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default User defined fields , field chooser

As does Outlook 2007. g

--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"Dmitry Streblechenko" wrote in message ...

plug Redemption allows to explicitly manipulate folder fields definitions
through the RDOFolder2.FolderFields collection
http://www.dimastr.com/redemption/rd...lderFields.htm /plug


  #7  
Old July 4th 07, 11:26 PM posted to microsoft.public.outlook.program_addins
Dmitry Streblechenko
external usenet poster
 
Posts: 2,116
Default User defined fields , field chooser

Oh, I completely forgot about MAPIFolder.UserDefinedProperties in Outlook
2007!

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Sue Mosher [MVP-Outlook]" wrote in message
...
As does Outlook 2007. g

--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"Dmitry Streblechenko" wrote in message
...

plug Redemption allows to explicitly manipulate folder fields
definitions
through the RDOFolder2.FolderFields collection
http://www.dimastr.com/redemption/rd...lderFields.htm /plug



  #8  
Old July 5th 07, 08:37 AM posted to microsoft.public.outlook.program_addins
j
external usenet poster
 
Posts: 109
Default User defined fields , field chooser

On Jul 4, 5:29 pm, "Sue Mosher [MVP-Outlook]"
wrote:
Add the fields to the folder, manually through the folder's Field Chooser.



i can't add them manually cause thety not appear i nthe field chooser.
It takes some period of time (20-30 minutes) when they will appear in
field chosser.
Just to note in INBOX's field chooser they appear momentary .


Ideas????

  #9  
Old July 5th 07, 03:27 PM posted to microsoft.public.outlook.program_addins
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default User defined fields , field chooser

"add manually" means to click the New button on the Field Chooser. What happens when you do that?

--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"j" wrote in message oups.com...
On Jul 4, 5:29 pm, "Sue Mosher [MVP-Outlook]"
wrote:
Add the fields to the folder, manually through the folder's Field Chooser.



i can't add them manually cause thety not appear i nthe field chooser.
It takes some period of time (20-30 minutes) when they will appear in
field chosser.
Just to note in INBOX's field chooser they appear momentary .


Ideas????

  #10  
Old July 8th 07, 09:02 AM posted to microsoft.public.outlook.program_addins
j
external usenet poster
 
Posts: 109
Default User defined fields , field chooser


"add manually" means to click the New button on the Field Chooser. What happens when you do that?

It's works, i can manually ad field, however i expirience problem to
see custom fields in field chosoer, ater i added them to mailItem and
moved this
mailItem to folder.

Any Ideas?

 




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
USER-DEFINED FIELDS - MAX. # cpj Outlook - Using Contacts 10 June 22nd 07 06:01 PM
User-Defined Fields in Folder [email protected] Outlook - Using Contacts 5 November 13th 06 08:59 PM
Outlook Contacts - Converting User-defined Item fields to Folder fields [email protected] Outlook - Using Contacts 1 September 29th 06 10:17 PM
User defined fields Darcy W. Outlook - General Queries 1 September 16th 06 05:00 AM
user defined fields Karl-H. Engesser Outlook - Using Contacts 1 February 9th 06 03:33 PM


All times are GMT +1. The time now is 09:25 PM.


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.