iknowkungfu
Registered User.
- Local time
- Today, 23:14
- Joined
- Jan 17, 2006
- Messages
- 24
I think the title describes what I want to do, but:
For example, I want to create multiple recordsets with names created dynamically.
Creating 6 recordsets named
objRST0
...
objRST5
I'd then want to process these recordsets in the same way.
So what you are doing is putting the value of a variable into the code as it is executed.
For example, I want to create multiple recordsets with names created dynamically.
Code:
For intX = 0 to 5
Dim objRST(intX) As Recordset
intX = intX + 1
Next
Creating 6 recordsets named
objRST0
...
objRST5
I'd then want to process these recordsets in the same way.
So what you are doing is putting the value of a variable into the code as it is executed.