Zedfox Technologies Blog

Menu

Skip to content
  • Home
  • Blog

Tag Archives: outlook 2010

Outlook statistics of received emails in an email folder using VBA

Posted on April 30, 2013 by zf

Outlook statistics with VBA Have you ever wondered how many emails you get everyday or send ever day? Nearly 43% of my time went in reading and responding to emails. That is a lot of time away from core development. There weren’t software I could find online to run outlook statistics about the number of […]

Outlook statistics of received emails in an email folder using VBA

Outlook – Mail item properties using VBA

Posted on April 29, 2013 by zf

Mail item properties using VBA in Outlook If you are using VBA to look at mail properties it can get confusing pretty quick. How many properties do mail items have and which one should I use? Look no further. Here are some 90+ properties of a mail object in Outlook 2010. 0-Application 1-Class 2-Session 3-Parent […]

Outlook – Mail item properties using VBA

Outlook – List all folders within a top level folder using VBA

Posted on April 29, 2013 by zf

List all top level folders in an Outlook mailbox using VBA Let’s say I wanted to list all the folders for a top level folder such as LargeOldEmails2 using VBA. How would I do it?   ‘ We will explicitly declare all variables using ‘ Dim or ReDim keywords. This is good practice Option Explicit […]

Outlook – List all folders within a top level folder using VBA

Outlook – List all top level folders using VBA

Posted on April 29, 2013 by zf

How do we list top level folders using VBA? I wanted to list all the top level folders such as LargeOldEmails, LargeOldEmails2 etc. In Outlook, ensure that the Developer tab is enabled. Click Alt + F11 or click on Developer tab and click Visual Basic. After reaching the Visual Basic for Applications (VBA) window, click […]

Outlook – List all top level folders using VBA