|
-
Sep 24th, 2007, 01:27 AM
#1
Thread Starter
Fanatic Member
[RESOLVED] rewriting recordset name field
having these fields
print rs!address1
print rs!address2
print rs!address3
i want to loop through to the NAME FIELD (not FIELD INDEX)
for i=1 to 3
print rs!address & i
next
but the compiler returns that rs!address & i is no where to found in the recordset collection.
-
Sep 24th, 2007, 01:48 AM
#2
Thread Starter
Fanatic Member
Re: rewriting recordset name field
opps i figure it out:
for i=1 to 3
print rs("address" & i)
next
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|