일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- delphi 10.3
- 중복제거
- anaconda3
- Push
- python 3.7
- advColumnGrid
- declare
- MSSQL
- c#
- TMS
- Visual Studio
- pyhcarm
- Django
- queryset
- GIT
- 델파이
- dbadvgrid
- PyCharm
- 백준
- Delphi
- HTML
- get_object_or_404
- COMMIT
- pythonanywhere
- templates
- hackerrank
- rank
- github
- python3
- blog
- Today
- Total
목록전체 글 (60)
DevHyun
private Point point = new Point(); // mousedown 이벤트 private void panel2_MouseDown(object sender, MouseEventArgs e) { // 클릭후 드래그로 폼 이동시 사용 point = new Point(e.X, e.Y); } // mousemove 이벤트 // mouseup 이벤트에서 사용시 버벅거림 현상이 생김 private void panel2_MouseMove(object sender, MouseEventArgs e) { // 클릭후 드래그로 폼 이동시 사용 if ((e.Button & MouseButtons.Left) == MouseButtons.Left) { this.Location = new Point(this.Lef..
// 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(""); }
1. dll 활용 // dll 선언 [DllImport("kernel32.dll")] private static extern uint GetPrivateProfileString(string section, string key, string defaultValue, StringBuilder returnedString, uint size, string filePath); [DllImport("kernel32.dll")] private static extern bool WritePrivateProfileString(string section, string key, string value, string filePath); // 사용 // ini파일 구성 // [section] // key : value stri..