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
- exifread
- kanna parser
- 자전거
- 유성
- swift
- C#
- file move
- 대전
- kanna html parser
- 노은
- 대전 자전거
- StreamReader
- 스위프트
- swift html parser
- 파이썬
- 딴지일보 자유게시판 파씽
- VBA
- Exif
- dataset
- python
- euc-kr
- MDB
- 엑셀
- mdb table 합치기
- html parser
- 달력
- insert into
- 대전 업힐
- EXIF data
Archives
- Today
- Total
목록자식폼 (2)
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
c# Interface를 이용한 부모폼과 자식폼간의 데이터 이동
부모폼과 자식폼이 있다고 했을때 VB 시절에는 참 쉽게... 다른폼위에 있는 컨트롤이나 메소드를 사용했던것 같은데 c#에서는 복잡하더라구영.. 이런저런 많은 방법이 있지만. 지금 소개하는 interface를 이용하는 방법..... 나름 괜찮은(사실 요부분은 판단할 능력이 없네영. ㅜㅜ) 인듯해서 소개해드립니다.부모폼에는 텍스박스랑 버튼이랑 라벨이 있고자식폼엔느 텍스트박스랑 버튼 올려놓으시면 되겠군여 12345678910111213141516171819202122232425namespace p_C_form_connect { public interface IMyInterface { void SetData(String Data); } public partial class Form1 : Form, IMyInte..
프로그래밍/c# & VB 등
2015. 6. 1. 09:25