|
Try changing your 'do while' loop to a simple 'while' loop.
while not RSf.EOF
...
With a 'do while' loop, the code is executed once, and then the condition (RSf.EOF) is checked.
in a 'while' loop, the condition is checked before the code is executed.
|