Hi, any idea how get (with fwin) any single message from a DBX file of Outlook Express ?
I need it to get and process many many emails message in automatic mode using fwin
tks
Romeo/Zingoni
#define olFolderInbox 6
FUNCTION MAIN()
LOCAL oOutlook := CREATEOBJECT( "Outlook.Application" )
LOCAL oNameSpace := oOutlook:GetNameSpace("MAPI")
LOCAL oInbox := oNameSpace:GetDefaultFolder( olFolderInbox )
LOCAL i
FOR i = 1 TO oInbox:Items:Count
? oInbox:Items[ i ]:Body
?
NEXT
oOutlook:Quit()
INKEY( 0 )
RETURN NIL
Return to FiveWin for Harbour/xHarbour