aalexander2003
Programmer
The following loop worked in outlook 2000 but not when i installed it on another computer which has XP
For Each objAppt In colCal
myString = objAppt.Categories
If (myString <> ""
Then
catList = catList & myString & ", "
End If
Next
The error is on the last line. objAppt is an Outlook.AppointmentItem. colCal is an Outlook.Items.
Any ideas?
thanks,
Ashwin
For Each objAppt In colCal
myString = objAppt.Categories
If (myString <> ""
catList = catList & myString & ", "
End If
Next
The error is on the last line. objAppt is an Outlook.AppointmentItem. colCal is an Outlook.Items.
Any ideas?
thanks,
Ashwin