|
-
Sep 22nd, 2003, 08:44 AM
#1
Thread Starter
Lively Member
outlook express dbx file format ?
Hi,
I need to extract mails from the outlook express dbx files and show to the user.
can anybody know the outlook express dbx file format ? If so plese let me know.
Praveen
-
Sep 24th, 2003, 05:06 AM
#2
Frenzied Member
I don't think that the coding and file layout is available or understandable. If it is, then it will be defined in MSDN or in :
http://www.wotsit.org/search.asp?page=1&s=windows
You might be able to use SimpleMAPI, and so talk through Outlook Express to the mail storage areas. Add MAPIsession and MAPImessages to the form, then:
VB Code:
'Connect to the e-mail system
MAPISession1.SignOn
'Link messages to the session
MAPIMessages2.SessionID = MAPISession1.SessionID
'Set up a collection of messages - all those from Inbox
MAPIMessages2.Fetch
' Show how many there are
MsgBox MAPIMessages2.MsgCount
'For the first 4 messages in the Inbox
For X = 0 To 3
' Set the current message pointer to the next message
MAPIMessages2.MsgIndex = X
' Show the original address of the message
MsgBox MAPIMessages2.MsgOrigAddress
Next X
'end the session
MAPISession1.SignOff
-
Sep 24th, 2003, 07:28 PM
#3
Thread Starter
Lively Member
is it possible to get messages in other folders , I mean other than inbox , using MAPI ?
and moreover mapi signin expects username,password right ?
I need to show all other folders too.
Praveen
-
Sep 26th, 2003, 09:03 AM
#4
Frenzied Member
Usng SimpleMAPI you can only get through to simple things - lke your Inbox.
Using OLE Messaging or OLE Automation of VBA or other techniques, you can get through to many different folders.
Outlook supports all of these.
Outlook Express supports SimpleMAPI only.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|