31 lines
661 B
C
31 lines
661 B
C
|
// sesadlg.h : header file
|
||
|
//
|
||
|
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
// CSesaDlg dialog
|
||
|
|
||
|
class CSesaDlg : public CDialog
|
||
|
{
|
||
|
// Construction
|
||
|
public:
|
||
|
CSesaDlg(CWnd* pParent = NULL); // standard constructor
|
||
|
|
||
|
// Dialog Data
|
||
|
//{{AFX_DATA(CSesaDlg)
|
||
|
enum { IDD = IDD_CONNECTION };
|
||
|
CString m_strDSN;
|
||
|
CString m_strConnect;
|
||
|
CString m_strTable;
|
||
|
//}}AFX_DATA
|
||
|
|
||
|
// Implementation
|
||
|
protected:
|
||
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
||
|
|
||
|
// Generated message map functions
|
||
|
//{{AFX_MSG(CSesaDlg)
|
||
|
// NOTE: the ClassWizard will add member functions here
|
||
|
//}}AFX_MSG
|
||
|
DECLARE_MESSAGE_MAP()
|
||
|
};
|