-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathInputAmount.h
More file actions
42 lines (29 loc) · 691 Bytes
/
Copy pathInputAmount.h
File metadata and controls
42 lines (29 loc) · 691 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
#pragma once
#include "afxwin.h"
#include "ExEditBox.h"
// CInputAmount dialog
class CInputAmount : public CDialog
{
DECLARE_DYNAMIC(CInputAmount)
public:
CInputAmount(CWnd* pParent = NULL); // standard constructor
virtual ~CInputAmount();
// Dialog Data
enum { IDD = IDD_INPUTAMOUNT_DIALOG };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Implementation
protected:
// Generated message map functions
virtual BOOL OnInitDialog();
virtual void OnOK();
virtual void OnCancel();
DECLARE_MESSAGE_MAP()
public:
CExEditBox cntAmountEdit;
private:
public:
CString strAmount;
ULONG Amount;
afx_msg void OnEnChangeAmountEdit();
};