root/trunk/ProjectScriptsPage.cpp

Revision 5, 1.2 kB (checked in by qbert, 6 years ago)

Initial ( and last :( ) commit

Line 
1 // ProjectScriptsPage.cpp : implementation file
2 //
3
4 #include "stdafx.h"
5 #include "Elephant.h"
6 #include "ProjectScriptsPage.h"
7
8 #ifdef _DEBUG
9 #define new DEBUG_NEW
10 #undef THIS_FILE
11 static char THIS_FILE[] = __FILE__;
12 #endif
13
14 /////////////////////////////////////////////////////////////////////////////
15 // CProjectScriptsPage dialog
16
17
18 CProjectScriptsPage::CProjectScriptsPage(CWnd* pParent /*=NULL*/)
19    
20 {
21     //{{AFX_DATA_INIT(CProjectScriptsPage)
22     m_1 = _T("Coming Soon.");
23     m_2 = _T("Coming Soon.");
24     m_3 = _T("Coming Soon.");
25     m_4 = _T("Coming Soon.");
26     //}}AFX_DATA_INIT
27 }
28
29
30 void CProjectScriptsPage::DoDataExchange(CDataExchange* pDX)
31 {
32     CDialog::DoDataExchange(pDX);
33     //{{AFX_DATA_MAP(CProjectScriptsPage)
34     DDX_Text(pDX, IDC_EDIT1, m_1);
35     DDX_Text(pDX, IDC_EDIT2, m_2);
36     DDX_Text(pDX, IDC_EDIT3, m_3);
37     DDX_Text(pDX, IDC_EDIT4, m_4);
38     //}}AFX_DATA_MAP
39 }
40
41
42 BEGIN_MESSAGE_MAP(CProjectScriptsPage, CDialog)
43     //{{AFX_MSG_MAP(CProjectScriptsPage)
44         // NOTE: the ClassWizard will add message map macros here
45     //}}AFX_MSG_MAP
46 END_MESSAGE_MAP()
47
48 /////////////////////////////////////////////////////////////////////////////
49 // CProjectScriptsPage message handlers
Note: See TracBrowser for help on using the browser.