// DlgUpdateNote.cpp : ±¸Çö ÆÄÀÏÀÔ´Ï´Ù. // #include "stdafx.h" #include "ReviewSystem.h" #include "DlgUpdateNote.h" #include "afxdialogex.h" // CDlgUpdateNote ´ëÈ­ »óÀÚÀÔ´Ï´Ù. IMPLEMENT_DYNAMIC(CDlgUpdateNote, CDialogEx) CDlgUpdateNote::CDlgUpdateNote(CWnd* pParent /*=NULL*/) : CDialogEx(CDlgUpdateNote::IDD, pParent) { } CDlgUpdateNote::~CDlgUpdateNote() { } void CDlgUpdateNote::DoDataExchange(CDataExchange* pDX) { CDialogEx::DoDataExchange(pDX); DDX_Control(pDX, IDC_EDIT_UPDATE_NOTE, m_editctrlUpdateNote); } BEGIN_MESSAGE_MAP(CDlgUpdateNote, CDialogEx) ON_WM_ACTIVATE() END_MESSAGE_MAP() void CDlgUpdateNote::OnActivate(UINT nState, CWnd* pWndOther, BOOL bMinimized) { CDialogEx::OnActivate(nState, pWndOther, bMinimized); // TODO: ¿©±â¿¡ ¸Þ½ÃÁö 󸮱â Äڵ带 Ãß°¡ÇÕ´Ï´Ù. CString crlf = _T("\r\n"); CString lastupdate; CString substring; substring = _T("20180706 CMJ."); lastupdate += substring; lastupdate += crlf; substring = _T("B11 New Program Make"); lastupdate += substring; lastupdate += crlf; substring = _T("Keyboard Jog Move Add"); lastupdate += substring; lastupdate += crlf; lastupdate += crlf; m_editctrlUpdateNote.SetWindowText(lastupdate); UpdateData(FALSE); }