K
Kim
I am trying to update a recordset without knowing the field names. I find
the field names using .field.name. See below:
For i = 2 To fldCount - 2
mastervalue = master.Fields(i - 1).Name
replicavalue = replica.Fields(i - 1).Value
master.Edit
master.mastervalue= replicavalue
master.Update
I want update master.(mastervalue) to replicavalue. I get error "Object
doesn't support this property or method" I know that the error is with
master.mastervalue= replicavalue. Any one have any ideas?
Thanks!
the field names using .field.name. See below:
For i = 2 To fldCount - 2
mastervalue = master.Fields(i - 1).Name
replicavalue = replica.Fields(i - 1).Value
master.Edit
master.mastervalue= replicavalue
master.Update
I want update master.(mastervalue) to replicavalue. I get error "Object
doesn't support this property or method" I know that the error is with
master.mastervalue= replicavalue. Any one have any ideas?
Thanks!