I've finally gottento the point (I think) where I can start tweaking things a bit and I've noticed the time it takes to count how many files I have in my recordset is quite long. Is there a quicker way to know how many files are in the recordset? Here is what I have so far.
rst.MoveFirst
Do Until rst.EOF = True
dummyvariable = rst(0)
r = r + 1
rst.MoveNext
Loop
MsgBox r & " records will be retrieved."
Any help would be appreciated.
rst.MoveFirst
Do Until rst.EOF = True
dummyvariable = rst(0)
r = r + 1
rst.MoveNext
Loop
MsgBox r & " records will be retrieved."
Any help would be appreciated.