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

c:\program files\outlook express\msoe.dll



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old August 2nd 07, 05:35 PM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Steve[_2_]
external usenet poster
 
Posts: 12
Default c:\program files\outlook express\msoe.dll

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  
Old August 2nd 07, 06:48 PM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Steven Hurtado
external usenet poster
 
Posts: 2
Default c:\program files\outlook express\msoe.dll


"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  
Old August 3rd 07, 11:01 AM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Steve Cochran
external usenet poster
 
Posts: 2,353
Default c:\program files\outlook express\msoe.dll

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  
Old August 3rd 07, 06:22 PM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Steve[_2_]
external usenet poster
 
Posts: 12
Default c:\program files\outlook express\msoe.dll

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  
Old August 4th 07, 02:16 AM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Michael Santovec
external usenet poster
 
Posts: 2,875
Default c:\program files\outlook express\msoe.dll

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  
Old August 4th 07, 03:48 AM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Steve[_2_]
external usenet poster
 
Posts: 12
Default c:\program files\outlook express\msoe.dll

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  
Old August 4th 07, 01:12 PM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Steve Cochran
external usenet poster
 
Posts: 2,353
Default c:\program files\outlook express\msoe.dll

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  
Old August 4th 07, 02:47 PM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Steve[_2_]
external usenet poster
 
Posts: 12
Default c:\program files\outlook express\msoe.dll

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  
Old August 5th 07, 03:38 AM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Michael Santovec
external usenet poster
 
Posts: 2,875
Default c:\program files\outlook express\msoe.dll

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  
Old August 5th 07, 06:49 AM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
...winston
external usenet poster
 
Posts: 112
Default c:\program files\outlook express\msoe.dll

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


All times are GMT +1. The time now is 11:30 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.