Hi,
If I have an array that is built using the GetRows function can I then add additional 'slots' to it?
So far I have
TBL.Open "SELECT cAuthorID, cFirstName, cLastName FROM Author", DB
If Not TBL.EOF Then
AuthorArray=TBL.GetRows()
End If
TBL.Close
I would then like to add some extra elements so that I can store extra information for each author.
Basically I want to keep totals for each author of jobs for each status letter. The jobs in the recordset have an AuthorID and a job status - the job status can be set to 'B', 'I', 'D', 'U' or 'R'.
Hope that makes sense if there's anything else please let me know.
Thanks
Ed
If I have an array that is built using the GetRows function can I then add additional 'slots' to it?
So far I have
TBL.Open "SELECT cAuthorID, cFirstName, cLastName FROM Author", DB
If Not TBL.EOF Then
AuthorArray=TBL.GetRows()
End If
TBL.Close
I would then like to add some extra elements so that I can store extra information for each author.
Basically I want to keep totals for each author of jobs for each status letter. The jobs in the recordset have an AuthorID and a job status - the job status can be set to 'B', 'I', 'D', 'U' or 'R'.
Hope that makes sense if there's anything else please let me know.
Thanks
Ed