How do I code to move to the next feild in a table

  • Thread starter Thread starter Alexus
  • Start date Start date
A

Alexus

I successfully imported a complex delimited text file
into a blank table and know need to populate my main
table with this scrambled information and can't figure
out hot to code VB to move tot the nest feild for
comapraision. What code should I use?
 
Alexus,

If you have opened the table as a recordset in code, you
don't move to a different field, you just refer to the field
name (rs!FieldName) to access it's data. You do use
rs.MoveNext to go to the next record however.

--

Gary Miller
Gary Miller Computer Services
Sisters, OR
________________________
 
Back
Top