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

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?
 
G

Gary Miller

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
________________________
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top