I have several questions about recordset.
1. create a recordset field's name:
With rstA.Fields
.Append "fName", adChar 'got error.
End With
2. After is is created, I will populate it by following, is it correct?
With rstA
.AddNew
![fName] = rstA![fName]
.Update
End With
Thanks in advance.
1. create a recordset field's name:
With rstA.Fields
.Append "fName", adChar 'got error.
End With
2. After is is created, I will populate it by following, is it correct?
With rstA
.AddNew
![fName] = rstA![fName]
.Update
End With
Thanks in advance.