Yes you can. If you want to import it to a database inside your program,
here is a simple but working code.
At the same token, if you want to display it on datagrid in your form create
a dataset and populate your datagrid.
Yonas
try
{
string strConn = @"Provider=Microsoft.Jet.OLEDB.4.0;Data
Source=c:\temp\yourdb.mdb";
OleDbConnection conn = new OleDbConnection(strConn);
conn.Open();
OleDbCommand cmd = new OleDbCommand();
cmd = new OleDbCommand("INSERT INTO Fattributes Select * from
[Text;DATABASE=c:\\temp;].[mydata.csv]",conn );
cmd.ExecuteNonQuery();
conn.Close();
}
catch
{
MessageBox.Show("Error Occured");
}