Being a novice I remain puzzled by some of the VBA constructis. For example, below is a snippet of code by Hellen Feddema.
With msg
.Item = omsg
.To = Item.BillingInformation
.Subject = Item.CardData
.Body = Item.Mileage
.Send
End With
She is using the "With" construct. VBA help doesn't respond to a query on "With" (which seems odd being that it is used in code!)
Anyway, can someone explain the syntax of the With/EndWith code? I notice that each entry inside With/End With begins with a period? What is the significance of the period?
Pardon my ignorance and thanks for the help.



