Link to home
Start Free TrialLog in
Avatar of jsmitter
jsmitterFlag for United States of America

asked on

How To Extract The Data From ADOTable Feild?

I need to pull the records from the fields in an MSAcess dB. I used the "locate"  to set the correct row. I can't figure out how to access any feild on that row. I need to pull the recodrs and build a string and send it to a line printer. Here's what I got so far...

with form1.ADOTable1 do begin          
    AdoTable1.Locate('ModemID', ModemIDProc,[]);         //Match ModemID To dBase
   What goes here?
end;
ASKER CERTIFIED SOLUTION
Avatar of Ferruccio Accalai
Ferruccio Accalai
Flag of Italy image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of jsmitter

ASKER

Thank you!