|
-
January 7th, 2000, 02:54 PM
#1
Retrieving from text file
set db = opendatabase("c:\directoryname",flase,false,"text")
set rs = db.openrecordset("filename",dbopendynaset)
do until rs.eof
msgbox rs(0)&rs(1)
rs.movenext
loop
it prints for rs(0) but gives error for rs(1)
the data i have in my file is in this order
ABC
XYZ
it prints only XYZ if i just ask it to print rs(0) and NOT ABC why?
What should i do such that both are printed.
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
|