V
vek
I am trying to capture a single field from multiple rows and concantenate
them into a delimited string.
Dim dbs As dao.Database
Dim rst As dao.Recordset
Dim varArray As Variant
Set rst = CurrentDb.OpenRecordset("SELECT * FROM tblPhotoNames ORDER BY
PhotoName")
varArray = rstRSet.GetRows(10000)
'I would like to write this array to a delimited string.
rst.Close
Set rst = Nothing
dbs.Close
Set dbs = Nothing
Thanks.
them into a delimited string.
Dim dbs As dao.Database
Dim rst As dao.Recordset
Dim varArray As Variant
Set rst = CurrentDb.OpenRecordset("SELECT * FROM tblPhotoNames ORDER BY
PhotoName")
varArray = rstRSet.GetRows(10000)
'I would like to write this array to a delimited string.
rst.Close
Set rst = Nothing
dbs.Close
Set dbs = Nothing
Thanks.