You need to look into the
System.Data.Odbc namespace. You can use an
OdbcConnection class to connect to an Access database. There are lots of threads in the wrox forums dealing with Access. Once you are connected, you can use an
OdbcDataReader. This is really the simplest .net form of the former ADODB.Recordset. You can use a data reader to go thru the rows returned from your table/query. The datareader is a forward-only read-only collection of rows. You can use the a reader to loop or for databinding to a data listing control.
Peter
------------------------------------------------------
Work smarter, not harder.