| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | |||||
| 3 | 4 | 5 | 6 | 7 | 8 | 9 |
| 10 | 11 | 12 | 13 | 14 | 15 | 16 |
| 17 | 18 | 19 | 20 | 21 | 22 | 23 |
| 24 | 25 | 26 | 27 | 28 | 29 | 30 |
| 31 |
Tags
- 분노
- SCADA
- JQuery
- HMI
- ORA-28002
- Python
- pythoncom37.dll
- Anaconda
- STS
- geckodriver
- DataTables
- build
- Custom
- 파이썬
- 원한
- checkbox
- Eclipse
- 리눅스
- 맥코트
- error
- LOG
- Linux
- 명령어
- 가상환경
- 말라키
Archives
- Today
- Total
목록2013/03/28 (2)
2010년 5월 1일, 2막
[C#] DataGridView에서 원하는 값을 얻어오는 방법
DataGridViewRowCollection rowCollection = dataGridView_excel_data.Rows; string getStr = rowCollection[1].Cells[3].Value.ToString();
Computer
2013. 3. 28. 15:13
[C#] OpenFileDialog 사용법
private void OpenFileDialog_1() { OpenFileDialog openFileDialog = new OpenFileDialog(); openFileDialog.Filter = "txt Files|*.txt|All Files|*.*"; openFileDialog.FilterIndex = 1; // FilterIndex는 1부터 시작 (여기서는 *.txt) openFileDialog.RestoreDirectory = true; try { if (openFileDialog.ShowDialog() == DialogResult.OK) { lblFileName1.Text = openFileDialog.FileName; // Label에 파일경로 출력 Print_FileStream(openF..
Computer
2013. 3. 28. 15:09