T
Todd Lemen
Referring to the VBA online help example for Assign
Method:
Set myOlApp = CreateObject("Outlook.Application")
Set myItem = myOlApp.CreateItem(olTaskItem)
myItem.Assign
Set myDelegate = myItem.Recipients.Add("April LaMonte")
myItem.Subject = "Prepare Agenda For Meeting"
myItem.DueDate = #9/20/97#
myItem.Send
I understand that, in this example, "myOlApp" may
bedimensioned as follows:
Dim myOlApp As Object
I understand that, in this example, "myItem" may be
dimensioned as follows:
Dim myItem As Outlook.TaskItem
How is "myDelegate" dimensioned in this example?
Method:
Set myOlApp = CreateObject("Outlook.Application")
Set myItem = myOlApp.CreateItem(olTaskItem)
myItem.Assign
Set myDelegate = myItem.Recipients.Add("April LaMonte")
myItem.Subject = "Prepare Agenda For Meeting"
myItem.DueDate = #9/20/97#
myItem.Send
I understand that, in this example, "myOlApp" may
bedimensioned as follows:
Dim myOlApp As Object
I understand that, in this example, "myItem" may be
dimensioned as follows:
Dim myItem As Outlook.TaskItem
How is "myDelegate" dimensioned in this example?