I have several fields in a recordset and I copy each one individually. Is there a way in VB to copy one recordset to another.
Example:
rstblSingle![intCourtID] = rsCourtTbl![intCourtID]
rstblSingle![intCaseID] = rsCourtTbl![intCaseID]
rstblSingle![strDestination] = rsCourtTbl![strDestination]
This example shows three fields being copied. There are many more fields.
Is there a wildcard like: rstblSingle[*] = rsCourtTbl[*] ????
I could not find anything. I really appreciate all the help I have gotten in this forum. Thanks.
Example:
rstblSingle![intCourtID] = rsCourtTbl![intCourtID]
rstblSingle![intCaseID] = rsCourtTbl![intCaseID]
rstblSingle![strDestination] = rsCourtTbl![strDestination]
This example shows three fields being copied. There are many more fields.
Is there a wildcard like: rstblSingle[*] = rsCourtTbl[*] ????
I could not find anything. I really appreciate all the help I have gotten in this forum. Thanks.