A
asc4john
I discovered I can do this:
dim rst as RecordSet
rst!someField = "some value" instead of this
rst.Fields("someField") = "some value"
Is there a difference between thre two? Is there a reason to use one
method and not the other?
dim rst as RecordSet
rst!someField = "some value" instead of this
rst.Fields("someField") = "some value"
Is there a difference between thre two? Is there a reason to use one
method and not the other?