S
Sandy
I have a project tracking database and I want to allow a
user to create a recurring project. I have opened a
recordset to get a single record and I would like to copy
this record as many times as the user has requested. The
only data that will change is the ID (autonumber) and the
projectDate. Will I need to copy the data for each field
individually... ie
rsrec.AddNew
rsRec("ProjectName")=rsRec("ProjectName")
....etc
Or is there an easier way of writing the data to the new
record. There are a lot of fields in the table so I am
just trying to find a shortcut.
Any ideas would be appreciated.
Thanks in advance
Sandy
user to create a recurring project. I have opened a
recordset to get a single record and I would like to copy
this record as many times as the user has requested. The
only data that will change is the ID (autonumber) and the
projectDate. Will I need to copy the data for each field
individually... ie
rsrec.AddNew
rsRec("ProjectName")=rsRec("ProjectName")
....etc
Or is there an easier way of writing the data to the new
record. There are a lot of fields in the table so I am
just trying to find a shortcut.
Any ideas would be appreciated.
Thanks in advance
Sandy