drowing rows from an mdb file

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hellow, how can drow information from a spesific row in an mdb file, to drow
information from a database i usually write

while (results.eof=false)

The_variable.code = Results.fileds.item(TheCode)

wend

is it the same for an mdb file? is their anothe way of writing it?

waiting for your replay.

thankes a lot.
 
hellow, how can drow information from a spesific row in an mdb file, to drow
information from a database i usually write

while (results.eof=false)

The_variable.code = Results.fileds.item(TheCode)

wend

is it the same for an mdb file? is their anothe way of writing it?

waiting for your replay.

thankes a lot.

Take a look at Recordset in the online help. I have no idea what the
context might be, how the table is structured, or what you want to do
with the information so I can't be specific, but opening a Recordset
on your table is going to be one likely approach.

John W. Vinson[MVP]
 
Back
Top