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.
32 lines
657 B
32 lines
657 B
#pragma once
|
|
#include "afxwin.h"
|
|
|
|
#include "Dask64.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:
|
|
virtual BOOL OnInitDialog();
|
|
afx_msg void OnBnClickedOk();
|
|
// the setting of CardID ComboBox
|
|
int m_nCardIdx;
|
|
// the control of CardID ComboBox
|
|
CComboBox m_cbCardID;
|
|
// the function to get the selected CardID
|
|
int GetCardID(void);
|
|
};
|
|
|