SDC C-Project CF Review 프로그램
KYH
2021-06-07 e21f80c0b3c303c8f38859cc7652822f2da2913c
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// 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);
}