Now I found out how to read mails from outlook, but only from the default inbox folder. How can I read from another folder?
....
Set objNS = objOL.GetNamespace("MAPI")

'get inbox
Set objFolder = objNS.GetDefaultFolder(olFolderInbox)

'loop thru inbox, display items
....
Any input?