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.