# IT, Computer Science/MFC, API 썸네일형 리스트형 dialog간 변수 참조 #include "InputDlg.h" void CLLLDlg::OnButtonTest() { // TODO: Add your control notification handler code here CInputDlg dlg; // * CInputDlg Class에 CLLLDlg에 대한 포인터 추가 dlg. m_pParentDlg = this; dlg.DoModal(); } 버튼 누를 시 대화상자에서 #include "LLLDlg.h" void CInputDlg::OnOK() { // TODO: Add extra validation here // CLLLDlg LDlg; m_strOut = m_strInput; CDialog::OnOK(); } 더보기 이전 1 ··· 8 9 10 11 12 13 14 다음