Click here to Skip to main content
15,886,110 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
C#
private void button1_Click(object sender, EventArgs e)
        {
            if (openFileDialog1.ShowDialog() == DialogResult.OK)
            {
                TxtPath.Text = openFileDialog1.FileName;
            }
     
            string connString = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source="+TxtPath.Text+"";
              DataSet ds = new DataSet();
              OleDbConnection conn = new OleDbConnection(connString);
             OleDbCommand cmd = new OleDbCommand("SELECT AttendanceLogId,AttendanceDate,EmployeeId,InTime,InDeviceId,OutTime from AttendanceLogs  ", conn);
             conn.Open();
             OleDbDataAdapter da = new OleDbDataAdapter(cmd);
             
da.Fill(ds, "AttendanceLogs");
dataGridView1.DataSource = ds;
dataGridView1.DataMember = "AttendanceLogs";
   conn.Close();

         

        }
    }
Posted
Updated 21-Nov-12 19:14pm
v2

1 solution

Check this link
Export DataGridView to CSV[^]
 
Share this answer
 
Comments
praveen kadimi 22-Nov-12 1:46am    
thank you so much helping me.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900