If you want to manipulate the data I suggest you start reading the help files on the System.Data.OleDb namespace, in particular the OleDbConnection, OleDbDataAdapter, OleDbCommand, DataSet, DataTable and DataRow classes.
In general, you have to define a connection using the OleDbConnection class. Then you query the connected database using the OleDbDataAdapter. Next you fill the DataSet with the acquired data and use the DataRow class to get the data per row. To edit the data you use the OleDbCommand class (in combination with using an SQL query).
Storing your data into arrays is thus not neccessary, for VS gives you plenty of classes to store, view and manipulate data in an Access database.
Regards, Ruffnekk
---
Is it my imagination or do buffalo wings taste just like chicken?