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
- swift
- html parser
- 달력
- kanna html parser
- 대전
- file move
- StreamReader
- 유성
- 노은
- 딴지일보 자유게시판 파씽
- 대전 업힐
- VBA
- euc-kr
- 스위프트
- kanna parser
- 엑셀
- C#
- dataset
- Xcode
- 자전거
- insert into
- Exif
- swift html parser
- 대전 자전거
- EXIF data
- python
- MDB
- 파이썬
- exifread
- mdb table 합치기
Archives
- Today
- Total
Fly to the sky & Return
자식 form이 열려있는지 확인하는 코드 본문
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
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;
}
|
cs |
1
2
3
4
|
if ((IsFormAlreadyOpen(typeof(Form2)) != null))
{
//코
}
|
cs |
'프로그래밍 > c# & VB 등' 카테고리의 다른 글
Epub reader 만들기 프로젝트..... by c# (0) | 2023.02.12 |
---|---|
text file에 쓰기 & 읽기 (0) | 2023.02.06 |
c# tabcontrol 상에서 function key 분배하기 (0) | 2020.02.27 |
C# 라벨 프린터 출력을 위한 준비 (0) | 2019.01.21 |
mdb 데이터베이스 자료 업데이트 하기 (0) | 2018.01.31 |