When you read and write data to a field, you’re actually reading or setting the Value property of a Field object. The Value property is the default property of a Field object, so the following statements are equivalent:
rst!LastName.Value = strName rst!LastName = strName