Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Exif
- 달력
- euc-kr
- EXIF data
- 유성
- kanna parser
- 딴지일보 자유게시판 파씽
- VBA
- kanna html parser
- 노은
- file move
- MDB
- C#
- 자전거
- html parser
- 파이썬
- dataset
- Xcode
- 엑셀
- insert into
- swift
- 대전 자전거
- 대전 업힐
- 대전
- exifread
- swift html parser
- StreamReader
- mdb table 합치기
- python
- 스위프트
Archives
- Today
- Total
목록Child Form (1)
Fly to the sky & Return
자식 form이 열려있는지 확인하는 코드
1 2 3 4 5 6 7 8 9 10 11 12 private Form IsFormAlreadyOpen(Type FormType) { foreach (Form OpenForm in Application.OpenForms) { if (OpenForm.GetType() == FormType) return OpenForm; } return null; } Colored by Color Scripter cs 1 2 3 4 if ((IsFormAlreadyOpen(typeof(Form2)) != null)) { //코 } Colored by Color Scripter cs
프로그래밍/c# & VB 등
2023. 2. 3. 21:53