You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
750 B
34 lines
750 B
|
4 weeks ago
|
#pragma once
|
||
|
|
#include "afxwin.h"
|
||
|
|
|
||
|
|
|
||
|
|
// CCardIDDlg dialog
|
||
|
|
|
||
|
|
class CCardIDDlg : public CDialog
|
||
|
|
{
|
||
|
|
DECLARE_DYNAMIC(CCardIDDlg)
|
||
|
|
|
||
|
|
public:
|
||
|
|
CCardIDDlg(int nCardIdx, CWnd* pParent = NULL); // standard constructor
|
||
|
|
virtual ~CCardIDDlg();
|
||
|
|
|
||
|
|
// Dialog Data
|
||
|
|
enum { IDD = IDD_CARDID_DIALOG };
|
||
|
|
|
||
|
|
protected:
|
||
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
||
|
|
|
||
|
|
DECLARE_MESSAGE_MAP()
|
||
|
|
public:
|
||
|
|
// afx_msg void OnCbnSelchangeComboCardid();
|
||
|
|
afx_msg void OnBnClickedOk();
|
||
|
|
// the setting of CardID ComboBox
|
||
|
|
int m_nCardIdx;
|
||
|
|
virtual BOOL OnInitDialog();
|
||
|
|
// the control of CardID ComboBox
|
||
|
|
CComboBox m_cbCardID;
|
||
|
|
// the function to get the selected CardID
|
||
|
|
int GetCardID(void);
|
||
|
|
// afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
|
||
|
|
};
|