Entries from January 2008

How I setup a WordPress blog

Date January 7, 2008

I have several WordPress blogs and I see myself repeating the same task over and over.  So I decided to write up this post as a reference for myself and others.
by ponanwi 
To make things easy and clear, I am going to write this as a bulleted list that you can run through.  Of course, I […]

Get Tasks in Outlook 2007 with VB.NET

Date January 6, 2008

You can retrieve the list of tasks in your Outlook 2007 using the following code
Dim ns As Outlook.NameSpaceDim tasks As Outlook.Itemsns = Application.GetNamespace(”MAPI”)tasks = ns.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderTasks).Items
Dim task As ObjectFor Each task In tasks    ‘ iterate through the tasks hereNext

Related PostsSynchronize Outlook Tasks with Remember the MilkOutlook 2007 is by far the best integrated solution for organizing […]

Close
E-mail It