 |
ms access - How to write VBA with Do While Loop? - Stack Overflow
The general idea is as this: Set rst = dbs.OpenRecordset("T_RECIPIENT_SORT", dbOpenDynaset) Do Until rst.EOF 'do or check what you want '.... rst.MoveNext Loop rst.Close
stackoverflow.com |
 |