![]() |
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
|
|||
|
|||
![]()
Does anyone have experince exposing the MAPI functions as found in
c:\program files\outlook express\msoe.dll by using API calls? Thanks! Steve |
Ads |
#2
|
|||
|
|||
![]() "Steve" wrote in message ... Does anyone have experince exposing the MAPI functions as found in c:\program files\outlook express\msoe.dll by using API calls? Thanks! Steve |
#3
|
|||
|
|||
![]()
Well, there aren't very many in msoe.dll and OE is only simple MAPI
compliant. You might take a look he http://msdn2.microsoft.com/en-us/library/ms709546.aspx steve "Steve" wrote in message ... Does anyone have experince exposing the MAPI functions as found in c:\program files\outlook express\msoe.dll by using API calls? Thanks! Steve |
#4
|
|||
|
|||
![]()
Steve,
Thank you for responding! I would like to select an Outlook Express email in the Inbox and paste the message into Excel2003. Is there a MAPI function in msoe.dll that could get the message so it could be exported to Excel2003 or copy and pasted into Excel2003? Thanks! Steve "Steve Cochran" wrote in message ... Well, there aren't very many in msoe.dll and OE is only simple MAPI compliant. You might take a look he http://msdn2.microsoft.com/en-us/library/ms709546.aspx steve "Steve" wrote in message ... Does anyone have experince exposing the MAPI functions as found in c:\program files\outlook express\msoe.dll by using API calls? Thanks! Steve |
#5
|
|||
|
|||
![]()
Being as OE is Simple MAPI, it supports only sending. It has no
functions for accessing any of the mail folders. You could copy and paste the text of a message into Excel, but it probably won't be pretty because the message won't be formatted to Excel unless the sender as specifically formatted the body for Excel. If you also want to copy the headers, you can do that from the Message Source (Ctrl-F3) window. But you'll probably need to do some parsing of the data. The message source will be the raw message as received via the Internet, according to RFC2822. ftp://ftp.isi.edu/in-notes/rfc2822.txt You can also, File Save As to an EML file (includes headers) or TXT file (message body only) if you want to get the message out of OE so that an program can process it. -- Mike - http://pages.prodigy.net/michael_santovec/techhelp.htm "Steve" wrote in message ... Steve, Thank you for responding! I would like to select an Outlook Express email in the Inbox and paste the message into Excel2003. Is there a MAPI function in msoe.dll that could get the message so it could be exported to Excel2003 or copy and pasted into Excel2003? Thanks! Steve "Steve Cochran" wrote in message ... Well, there aren't very many in msoe.dll and OE is only simple MAPI compliant. You might take a look he http://msdn2.microsoft.com/en-us/library/ms709546.aspx steve "Steve" wrote in message ... Does anyone have experince exposing the MAPI functions as found in c:\program files\outlook express\msoe.dll by using API calls? Thanks! Steve |
#6
|
|||
|
|||
![]()
Mike,
Thanks for responding! See my questions in-line --- "Michael Santovec" wrote in message ... Being as OE is Simple MAPI, it supports only sending. It has no functions for accessing any of the mail folders. You could copy and paste the text of a message into Excel, but it probably won't be pretty because the message won't be formatted to Excel unless the sender as specifically formatted the body for Excel. Do you know of any way to programatically do this? If you also want to copy the headers, you can do that from the Message Source (Ctrl-F3) window. But you'll probably need to do some parsing of the data. The message source will be the raw message as received via the Internet, according to RFC2822. ftp://ftp.isi.edu/in-notes/rfc2822.txt You can also, File Save As to an EML file (includes headers) or TXT file (message body only) if you want to get the message out of OE so that an program can process it. -- 1. Could you please explain what an EML file is. 2. Do you know of any way to programatically do this? Mike - http://pages.prodigy.net/michael_santovec/techhelp.htm "Steve" wrote in message ... Steve, Thank you for responding! I would like to select an Outlook Express email in the Inbox and paste the message into Excel2003. Is there a MAPI function in msoe.dll that could get the message so it could be exported to Excel2003 or copy and pasted into Excel2003? Thanks! Steve "Steve Cochran" wrote in message ... Well, there aren't very many in msoe.dll and OE is only simple MAPI compliant. You might take a look he http://msdn2.microsoft.com/en-us/library/ms709546.aspx steve "Steve" wrote in message ... Does anyone have experince exposing the MAPI functions as found in c:\program files\outlook express\msoe.dll by using API calls? Thanks! Steve |
#7
|
|||
|
|||
![]()
You could get the message body from the IMimeMessage interface that is
referenced in the documentation I referenced below. You can also then program Excel to incorporate it into a spreadsheet using Office's exposed functions. steve "Steve" wrote in message ... Steve, Thank you for responding! I would like to select an Outlook Express email in the Inbox and paste the message into Excel2003. Is there a MAPI function in msoe.dll that could get the message so it could be exported to Excel2003 or copy and pasted into Excel2003? Thanks! Steve "Steve Cochran" wrote in message ... Well, there aren't very many in msoe.dll and OE is only simple MAPI compliant. You might take a look he http://msdn2.microsoft.com/en-us/library/ms709546.aspx steve "Steve" wrote in message ... Does anyone have experince exposing the MAPI functions as found in c:\program files\outlook express\msoe.dll by using API calls? Thanks! Steve |
#8
|
|||
|
|||
![]()
Thanks for your response, Steve!
The documentation is for Microsoft Windows Mail (formerly Outlook Express), the online communication tool supplied as part of Windows Vista. I am using WindowsXP. Steve "Steve Cochran" wrote in message ... You could get the message body from the IMimeMessage interface that is referenced in the documentation I referenced below. You can also then program Excel to incorporate it into a spreadsheet using Office's exposed functions. steve "Steve" wrote in message ... Steve, Thank you for responding! I would like to select an Outlook Express email in the Inbox and paste the message into Excel2003. Is there a MAPI function in msoe.dll that could get the message so it could be exported to Excel2003 or copy and pasted into Excel2003? Thanks! Steve "Steve Cochran" wrote in message ... Well, there aren't very many in msoe.dll and OE is only simple MAPI compliant. You might take a look he http://msdn2.microsoft.com/en-us/library/ms709546.aspx steve "Steve" wrote in message ... Does anyone have experince exposing the MAPI functions as found in c:\program files\outlook express\msoe.dll by using API calls? Thanks! Steve |
#9
|
|||
|
|||
![]()
And EML file is the raw message as received via the Internet. The
format is described in RFC2822 (formerly RFC822) ftp://ftp.isi.edu/in-notes/rfc2822.txt If you do a search on RCF822, you should find utilities to process the files http://www.google.com/search?hl=en&q=rfc822+parse -- Mike - http://pages.prodigy.net/michael_santovec/techhelp.htm "Steve" wrote in message ... Mike, Thanks for responding! See my questions in-line --- "Michael Santovec" wrote in message ... Being as OE is Simple MAPI, it supports only sending. It has no functions for accessing any of the mail folders. You could copy and paste the text of a message into Excel, but it probably won't be pretty because the message won't be formatted to Excel unless the sender as specifically formatted the body for Excel. Do you know of any way to programatically do this? If you also want to copy the headers, you can do that from the Message Source (Ctrl-F3) window. But you'll probably need to do some parsing of the data. The message source will be the raw message as received via the Internet, according to RFC2822. ftp://ftp.isi.edu/in-notes/rfc2822.txt You can also, File Save As to an EML file (includes headers) or TXT file (message body only) if you want to get the message out of OE so that an program can process it. -- 1. Could you please explain what an EML file is. 2. Do you know of any way to programatically do this? Mike - http://pages.prodigy.net/michael_santovec/techhelp.htm "Steve" wrote in message ... Steve, Thank you for responding! I would like to select an Outlook Express email in the Inbox and paste the message into Excel2003. Is there a MAPI function in msoe.dll that could get the message so it could be exported to Excel2003 or copy and pasted into Excel2003? Thanks! Steve "Steve Cochran" wrote in message ... Well, there aren't very many in msoe.dll and OE is only simple MAPI compliant. You might take a look he http://msdn2.microsoft.com/en-us/library/ms709546.aspx steve "Steve" wrote in message ... Does anyone have experince exposing the MAPI functions as found in c:\program files\outlook express\msoe.dll by using API calls? Thanks! Steve |
#10
|
|||
|
|||
![]()
http://msdn2.microsoft.com/en-us/lib...61.aspxMinimum operating
systems Windows XP -- ...winston MS-MVP Windows Live Mail "Steve" wrote in message ... Thanks for your response, Steve! The documentation is for Microsoft Windows Mail (formerly Outlook Express), the online communication tool supplied as part of Windows Vista. I am using WindowsXP. Steve "Steve Cochran" wrote in message ... You could get the message body from the IMimeMessage interface that is referenced in the documentation I referenced below. You can also then program Excel to incorporate it into a spreadsheet using Office's exposed functions. steve "Steve" wrote in message ... Steve, Thank you for responding! I would like to select an Outlook Express email in the Inbox and paste the message into Excel2003. Is there a MAPI function in msoe.dll that could get the message so it could be exported to Excel2003 or copy and pasted into Excel2003? Thanks! Steve "Steve Cochran" wrote in message ... Well, there aren't very many in msoe.dll and OE is only simple MAPI compliant. You might take a look he http://msdn2.microsoft.com/en-us/library/ms709546.aspx steve "Steve" wrote in message ... Does anyone have experince exposing the MAPI functions as found in c:\program files\outlook express\msoe.dll by using API calls? Thanks! Steve |
|
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Outlook / Outlook Express msoe.dll error - urgent | [email protected] | Outlook - General Queries | 1 | March 24th 07 01:19 AM |
Outlook Express won't open MSOE.DLL can't be initialized | Ron | Outlook Express | 7 | July 7th 06 02:26 AM |
I created .msg files for contacts from my old outlook program. | Telemann | Outlook - General Queries | 1 | May 9th 06 05:15 PM |
Outlook Express launch error MSOE.DLL | Danno13Hen | Outlook Express | 6 | April 24th 06 12:42 AM |
MSOE.DLL file Missiing, cannot open Outlook Express | TJ | Outlook - Installation | 1 | February 3rd 06 09:26 PM |