12345678910111213141516171819202122232425262728293031323334353637383940 |
- #if !defined(AFX_INPUTCARD2DLG_H__35FCD8D3_BAB0_4DF3_900C_4FEE10938CF1__INCLUDED_)
- #define AFX_INPUTCARD2DLG_H__35FCD8D3_BAB0_4DF3_900C_4FEE10938CF1__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif
- class InputCard2Dlg : public CDialog
- {
- public:
- InputCard2Dlg(CWnd* pParent = NULL); // standard constructor
- int m_mode;
- BOOL m_bAddOne;
- enum { IDD = IDD_DLGInputCard2 };
- CString m_name;
- CString m_no;
- CString m_card2no1;
- CString m_card2no2;
- CString m_card2no3;
- CString m_card2no4;
- CString m_card2no5;
- public:
- virtual BOOL PreTranslateMessage(MSG* pMsg);
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- protected:
- virtual BOOL OnInitDialog();
- virtual void OnOK();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- public:
- afx_msg void OnBnClickedRecharge();
- };
- #endif
|