일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- PyCharm
- queryset
- github
- python 3.7
- pythonanywhere
- c#
- GIT
- python3
- declare
- get_object_or_404
- pyhcarm
- blog
- 중복제거
- advColumnGrid
- Push
- delphi 10.3
- dbadvgrid
- COMMIT
- anaconda3
- Visual Studio
- 델파이
- Django
- Delphi
- hackerrank
- 백준
- rank
- MSSQL
- templates
- HTML
- TMS
- Today
- Total
목록Visual Studio (3)
DevHyun
// Row clear dataGridView1.Rows.Clear(); // 컬럼 갯수 지정 this.dataGridView1.ColumnCount = 4; // 컬럼 너비 지정 this.dataGridView1.Columns[0].Width = 20; // 이미지 컬럼 추가 DataGridViewImageColumn iconColumn = new DataGridViewImageColumn(); dataGridView1.Columns.Insert(3, iconColumn); // 리소스 파일의 test_img 참조 Image tempImg = Properties.Resources.test_img; // 지정한 컬럼 갯수 만큼 해당 Row에 add dataGridView1.Rows.Add(value, v..
// dictionary 선언 // CurrentCultureIgnoreCase : 대소문자 구분무시 static Dictionary TestDic= new Dictionary(StringComparer.CurrentCultureIgnoreCase); // dictionary에 직접 key, value 값 추가 TestDic.Add(Key, Value); private void form1_MouseDown(object sender, MouseEventArgs e) { // 기존에 하드코딩했던 dictionary 복제용 변수 var dicOrg = new Dictionary(StringComparer.CurrentCultureIgnoreCase); // 기존 dictionary에서 내부 검색 dicOrg ..
// filePath 변수생성 및 초기값 지정 const string filePath = @"C:\"; // filePath에 만들고자 하는 파일이 없을때 if (File.Exists(filePath) == false) { try { // 디렉토리 부터 생성 DirectoryInfo di = new DirectoryInfo(DirPath); if (di.Exists == false) { try { di.Create(); } catch { MessageBox.Show("디렉토리 생성 실패"); } } } catch { //MessageBox.Show(""); }