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

IPM.NOTE - Save to specific Folder



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old February 4th 06, 09:22 PM posted to microsoft.public.outlook.program_forms
Carlos
external usenet poster
 
Posts: 24
Default IPM.NOTE - Save to specific Folder

I successfully implemented Sue Mosher solution to save journal items to a
specific folder ( Microsoft Outlook Programming - Listing 18.3), Sue mentions
it does not work properly for a message form. Not sure if if can not be done
or does not work as is. I want to implement a simmilar approach so that when
email messages from specific users arrive, or are sent to them, I either move
them or copy them to a Public Folders Journal. I am trying to do so by
modifying the IPM.Note form and using VBScript code in the form and then
replacing the default IPM.NOTE form. I have not been able to figure out the
changes needed or which events I could use. I have the functionality working
but I end up with a second copy of the outgoing message in the out box.

Has anyone figure out the correct procedure to accomplish this? THanks
--
Carlos
Ads
  #2  
Old February 5th 06, 12:05 AM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default IPM.NOTE - Save to specific Folder

The registry substitution method for replacing a message form with a custom form is broken for incoming messages in Outlook 2003, so you'll need to use code. There are a variety of methods for working with incoming items, including the Application.NewMailEx event and the other methods shown at http://www.outlookcode.com/d/code/zaphtml.htm

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


"Carlos" wrote in message ...
I successfully implemented Sue Mosher solution to save journal items to a
specific folder ( Microsoft Outlook Programming - Listing 18.3), Sue mentions
it does not work properly for a message form. Not sure if if can not be done
or does not work as is. I want to implement a simmilar approach so that when
email messages from specific users arrive, or are sent to them, I either move
them or copy them to a Public Folders Journal. I am trying to do so by
modifying the IPM.Note form and using VBScript code in the form and then
replacing the default IPM.NOTE form. I have not been able to figure out the
changes needed or which events I could use. I have the functionality working
but I end up with a second copy of the outgoing message in the out box.

Has anyone figure out the correct procedure to accomplish this? THanks
--
Carlos

  #3  
Old August 17th 06, 06:02 AM posted to microsoft.public.outlook.program_forms
Amit
external usenet poster
 
Posts: 13
Default IPM.NOTE - Save to specific Folder

Hello Sue,

I read your book and it is prefect. And really looking for your kind help:


I got a question for you.

My requirement is almost same as Andy requested, however, the request here
is to export entire email into the database.

Now, whenever the mail receive, I need to make call to the webservice that
has all data to export into database in XML format. Everything has done,
except that I am unable to know what all new email has been added.

Options that I tried:

NewMail event - it trigger only once even if I receive more than one email.
And since it does not have any parameter to know which item has added, it is
hard to get things done.

NewMailEX (...) where EntityId is a parameter to know Item that has added.
And as per the Microsoft Office website, EntityID parameter contain value
separate with , (comma) if we added more than 1 item. But I could not find
that I am receiving value in with , (comma) separated. I checked in forum
where it saying that it bahave like that when we have Exchange server so
this door closed as well!!

ItemAdd(...) The one known issue is that ItemAdd won't fire if more than 16
items are added to the folder at one time.

Any suggestion?

Cheers,
Amit



"Sue Mosher [MVP-Outlook]" wrote:

The registry substitution method for replacing a message form with a custom form is broken for incoming messages in Outlook 2003, so you'll need to use code. There are a variety of methods for working with incoming items, including the Application.NewMailEx event and the other methods shown at http://www.outlookcode.com/d/code/zaphtml.htm

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


"Carlos" wrote in message ...
I successfully implemented Sue Mosher solution to save journal items to a
specific folder ( Microsoft Outlook Programming - Listing 18.3), Sue mentions
it does not work properly for a message form. Not sure if if can not be done
or does not work as is. I want to implement a simmilar approach so that when
email messages from specific users arrive, or are sent to them, I either move
them or copy them to a Public Folders Journal. I am trying to do so by
modifying the IPM.Note form and using VBScript code in the form and then
replacing the default IPM.NOTE form. I have not been able to figure out the
changes needed or which events I could use. I have the functionality working
but I end up with a second copy of the outgoing message in the out box.

Has anyone figure out the correct procedure to accomplish this? THanks
--
Carlos


  #4  
Old August 17th 06, 03:21 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default IPM.NOTE - Save to specific Folder

I see Ken already answered your question in the addins group, which more appropriate than this one for your issue.

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

"Amit" wrote in message news
Hello Sue,

I read your book and it is prefect. And really looking for your kind help:


I got a question for you.

My requirement is almost same as Andy requested, however, the request here
is to export entire email into the database.

Now, whenever the mail receive, I need to make call to the webservice that
has all data to export into database in XML format. Everything has done,
except that I am unable to know what all new email has been added.

Options that I tried:

NewMail event - it trigger only once even if I receive more than one email.
And since it does not have any parameter to know which item has added, it is
hard to get things done.

NewMailEX (...) where EntityId is a parameter to know Item that has added.
And as per the Microsoft Office website, EntityID parameter contain value
separate with , (comma) if we added more than 1 item. But I could not find
that I am receiving value in with , (comma) separated. I checked in forum
where it saying that it bahave like that when we have Exchange server so
this door closed as well!!

ItemAdd(...) The one known issue is that ItemAdd won't fire if more than 16
items are added to the folder at one time.

Any suggestion?

Cheers,
Amit



"Sue Mosher [MVP-Outlook]" wrote:

The registry substitution method for replacing a message form with a custom form is broken for incoming messages in Outlook 2003, so you'll need to use code. There are a variety of methods for working with incoming items, including the Application.NewMailEx event and the other methods shown at http://www.outlookcode.com/d/code/zaphtml.htm

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


"Carlos" wrote in message ...
I successfully implemented Sue Mosher solution to save journal items to a
specific folder ( Microsoft Outlook Programming - Listing 18.3), Sue mentions
it does not work properly for a message form. Not sure if if can not be done
or does not work as is. I want to implement a simmilar approach so that when
email messages from specific users arrive, or are sent to them, I either move
them or copy them to a Public Folders Journal. I am trying to do so by
modifying the IPM.Note form and using VBScript code in the form and then
replacing the default IPM.NOTE form. I have not been able to figure out the
changes needed or which events I could use. I have the functionality working
but I end up with a second copy of the outgoing message in the out box.

Has anyone figure out the correct procedure to accomplish this? THanks
--
Carlos


 




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
Outlook--Sending a Copy of a Message to a Specific Folder [email protected] Outlook - General Queries 4 March 5th 06 08:26 PM
Replys sent to a specific folder? Bob Newman Outlook - General Queries 6 February 7th 06 05:25 PM
change of the standard form for ipm.note Nico Brandt Outlook - Using Forms 1 February 1st 06 12:49 AM
change of the standard form for ipm.note Nico Brandt Outlook - Using Forms 0 January 24th 06 06:17 PM
How do I save emails in Activities folder? Sue Mosher [MVP-Outlook] Outlook - Using Contacts 4 January 19th 06 06:25 PM


All times are GMT +1. The time now is 11:03 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2024 Outlook Banter.
The comments are property of their posters.