What for do you need this?
In my case I save the emails with a macro and than use a FW program with a timer which looks up the folder where the emails are saved.
Regards
Otto
Search found 2 matches
- Thu May 03, 2007 6:05 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: How get message from dbx (Outlook Express)
- Replies: 6
- Views: 1826
- Thu May 03, 2007 3:54 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: How get message from dbx (Outlook Express)
- Replies: 6
- Views: 1826
This is a VBA Macro where I inserted some code to get all Emails from a folder. Regards Otto Sub SaveEmail() 'Declaration Dim itm As Outlook.MailItem Set olItms = Application.ActiveExplorer.CurrentFolder.Items On Error Resume Next For Each itm In olItms MsgBox (itm.SenderEmailAddress) Next itm End Sub