Results 1 to 4 of 4

Thread: outlook express dbx file format ?

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Dec 2002
    Posts
    94

    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

  2. #2
    Frenzied Member
    Join Date
    Jan 2001
    Location
    Newbury, UK
    Posts
    1,878
    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:
    1. 'Connect to the e-mail system
    2.     MAPISession1.SignOn
    3. 'Link messages to the session
    4.     MAPIMessages2.SessionID = MAPISession1.SessionID
    5. 'Set up a collection of messages - all those from Inbox
    6.     MAPIMessages2.Fetch
    7. ' Show how many there are
    8.     MsgBox MAPIMessages2.MsgCount
    9.  
    10. 'For the first 4 messages in the Inbox
    11.     For X = 0 To 3
    12. ' Set the current message pointer to the next message
    13.         MAPIMessages2.MsgIndex = X
    14. ' Show the original address of the message
    15.         MsgBox MAPIMessages2.MsgOrigAddress
    16.     Next X
    17. 'end the session
    18.     MAPISession1.SignOff

  3. #3

    Thread Starter
    Lively Member
    Join Date
    Dec 2002
    Posts
    94
    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

  4. #4
    Frenzied Member
    Join Date
    Jan 2001
    Location
    Newbury, UK
    Posts
    1,878
    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
  •  



Click Here to Expand Forum to Full Width