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 |
Tags
- Xcode
- 대전
- 자전거
- VBA
- 엑셀
- 달력
- mdb table 합치기
- python
- swift
- 대전 업힐
- html parser
- 파이썬
- 대전 자전거
- MDB
- 스위프트
- file move
- euc-kr
- 딴지일보 자유게시판 파씽
- C#
- StreamReader
- insert into
- swift html parser
- dataset
- 유성
- EXIF data
- exifread
- kanna parser
- kanna html parser
- 노은
- Exif
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