336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
#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; <--- 불 필요
// UpdateData(TRUE);
// LDlg.m_strOut = m_strInput;
// LDlg.UpdateData(FALSE);
m_pParentDlg->m_strOut = m_strInput;
CDialog::OnOK();
}
'# IT, Computer Science > MFC, API' 카테고리의 다른 글
MFC 트레이 아이콘 등록 및 윈도우 감추기 (0) | 2010.09.07 |
---|---|
[MFC] OpenUrl을 이용하여 http소스 읽기 (0) | 2010.09.07 |
내 컴퓨터의 아이피주소를 얻는 함수 (0) | 2010.07.25 |
Service 프로그램 (0) | 2010.06.27 |
MFC 다이얼로그에서 Enter키나 ECS키를 눌러 프로그램을 종료안되게 하기 (0) | 2010.04.14 |