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