J
Jim
I'm using the following code to try to set contact field values:
Set myItem = myFolder.Items.Add
For j = 1 To UBound(myArray, 1)
myItem.myArray(j, 2) = "Mr."
Next j
I get a 438 error, object doesn't support this property
myArray(j,2) is a string value (in this case set to "Title")
Is there some other way to use a variable to hold the names of the Outlook
fields, or do I have to use myItem.Title = "Mr."?
Thanks for your help,
Jim
Set myItem = myFolder.Items.Add
For j = 1 To UBound(myArray, 1)
myItem.myArray(j, 2) = "Mr."
Next j
I get a 438 error, object doesn't support this property
myArray(j,2) is a string value (in this case set to "Title")
Is there some other way to use a variable to hold the names of the Outlook
fields, or do I have to use myItem.Title = "Mr."?
Thanks for your help,
Jim