반응형 WindowsForm2 C# OleDb를 이용하여 엑셀파일 불러와서 내용 출력 1. 목표 테이블형태의 원하는 엑셀파일의 내용을 데이터그리드에 출력할수 있습니다. 2. 환경 OpenFileDialog 및 OleDb를 이용하여 엑셀파일 내용을 읽고 출력 합니다. 3. 코드 - OleDb 연결 및 조회 DBClass명으로 Class안에 작성한 내용입니다. using System.Data.OleDb; public void Conn() { /*string ConnectionString = "Provider=Microsoft.ACE.OLEDB.12.0; Data Source =" + this.filePath + this.fileName + "; Extended Properties = 'Excel 12.0 Xml; HDR=YES; IMEX=1;'"; */ string ConnectionStri.. 2022. 12. 30. C# how to datagridview checkbox value 변경 이벤트 적용하기 * 데이터그리드뷰 체크박스 값 이벤트 적용은 어떻게 해야할까? 데이터그리드에 체크박스 적용 후 체크박스 값에 따라 셀 백그라운드 색상을 변경을 위해서 CellContentClick을 사용하여 적용 해 보았다. private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e) { if (Convert.ToBoolean(dataGridView1.Rows[e.RowIndex].Cells["chk"].Value)) { dataGridView1.Rows[e.RowIndex].DefaultCellStyle.BackColor = Color.Yellow; } else { dataGridView1.Rows[e.RowIndex].D.. 2022. 2. 10. 이전 1 다음 반응형