forked from Thomas-Mielke-Software/EasyCash
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFormularabschnitt.cpp
More file actions
45 lines (31 loc) · 870 Bytes
/
Formularabschnitt.cpp
File metadata and controls
45 lines (31 loc) · 870 Bytes
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
// Formularabschnitt.cpp : implementation file
//
#include "stdafx.h"
#include "EasyCash.h"
#include "Formularabschnitt.h"
// CFormularabschnitt dialog
IMPLEMENT_DYNAMIC(CFormularabschnitt, CDialog)
CFormularabschnitt::CFormularabschnitt(CWnd* pParent /*=NULL*/)
: CDialog(CFormularabschnitt::IDD, pParent)
, m_name(_T(""))
, m_seite(0)
, m_vertikal(0)
{
}
CFormularabschnitt::~CFormularabschnitt()
{
}
void CFormularabschnitt::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CFormularabschnitt)
DDX_Text(pDX, IDC_NAME, m_name);
DDX_Text(pDX, IDC_SEITE, m_seite);
DDV_MinMaxInt(pDX, m_seite, 1, 10000);
DDX_Text(pDX, IDC_VERTIKAL, m_vertikal);
DDV_MinMaxInt(pDX, m_vertikal, 0, 1413);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CFormularabschnitt, CDialog)
END_MESSAGE_MAP()
// CFormularabschnitt message handlers