connection1.Open();
string sql = "delete * from AddjeInfo where id like '" + ds.Tables["AddjeInfo"].Rows [dataGridView1.CurrentCell.RowIndex][0].ToString().Trim() + "'";
OleDbCommand cmd = new OleDbCommand(sql, connection1);
cmd.ExecuteNonQuery();
connection1.Close();