Re: Questoin about outlook calendar

2006-08-31 Thread Roger Upole
"Gallagher, Tim F (NE)" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] "Gallagher, Tim (NE)" wrote : > import win32com.client > import time > import datetime > > outlook = win32com.client.Dispatch("Outlook.Application") > namespace = outlook.GetNamespace("MAPI") > appointments = na

RE: Questoin about outlook calendar

2006-08-31 Thread Gallagher, Tim F (NE)
"Gallagher, Tim (NE)" wrote : > import win32com.client > import time > import datetime > > outlook = win32com.client.Dispatch("Outlook.Application") > namespace = outlook.GetNamespace("MAPI") > appointments = namespace.GetDefaultFolder(9).Items > > #print appointments.count > x = 4 # This is a n

Re: Questoin about outlook calendar

2006-08-29 Thread Roger Upole
"Gallagher, Tim (NE)" wrote : > import win32com.client > import time > import datetime > > outlook = win32com.client.Dispatch("Outlook.Application") > namespace = outlook.GetNamespace("MAPI") > appointments = namespace.GetDefaultFolder(9).Items > > #print appointments.count > x = 4 # This is a nu

Questoin about outlook calendar

2006-08-29 Thread Gallagher, Tim (NE)
I am trying to pull all my information from outlook calendar so I can send calendar information to my phone via email. I have created a python script that will gather Outlook Calendar information and display it. I am new to python and this is something that I am working on so I can get better.