root/trunk/ProjectDetailsWizardPage.cpp

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

Initial ( and last :( ) commit

Line 
1 // ProjectDetailsWizardPage.cpp : implementation file
2 //
3
4 #include "stdafx.h"
5 #include "Elephant.h"
6 #include "ProjectDetailsWizardPage.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 // ProjectDetailsWizardPage property page
16
17 IMPLEMENT_DYNCREATE(ProjectDetailsWizardPage, CResizablePage)
18
19 ProjectDetailsWizardPage::ProjectDetailsWizardPage() : CResizablePage(ProjectDetailsWizardPage::IDD)
20 {
21     //{{AFX_DATA_INIT(ProjectDetailsWizardPage)
22         // NOTE: the ClassWizard will add member initialization here
23     //}}AFX_DATA_INIT
24 }
25
26 ProjectDetailsWizardPage::~ProjectDetailsWizardPage()
27 {
28 }
29
30 void ProjectDetailsWizardPage::DoDataExchange(CDataExchange* pDX)
31 {
32     CResizablePage::DoDataExchange(pDX);
33     //{{AFX_DATA_MAP(ProjectDetailsWizardPage)
34         // NOTE: the ClassWizard will add DDX and DDV calls here
35     //}}AFX_DATA_MAP
36 }
37
38
39 BEGIN_MESSAGE_MAP(ProjectDetailsWizardPage, CResizablePage)
40     //{{AFX_MSG_MAP(ProjectDetailsWizardPage)
41     //}}AFX_MSG_MAP
42 END_MESSAGE_MAP()
43
44 /////////////////////////////////////////////////////////////////////////////
45 // ProjectDetailsWizardPage message handlers
46
47 BOOL ProjectDetailsWizardPage::OnInitDialog()
48 {
49     CResizablePage::OnInitDialog();
50    
51     AddAnchor(IDC_EDIT9, TOP_LEFT, TOP_RIGHT);
52     AddAnchor(IDC_EDIT10, TOP_LEFT, 0);
53     AddAnchor(IDC_EDIT11, TOP_LEFT, 0);
54     AddAnchor(IDC_EDIT12, TOP_LEFT, 0);
55    
56     return TRUE;  // return TRUE unless you set the focus to a control
57                   // EXCEPTION: OCX Property Pages should return FALSE
58 }
Note: See TracBrowser for help on using the browser.