71067401ae
git-svn-id: svn://10.65.10.50/trunk@5000 c028cbd2-c16b-5b4b-a496-9718f37d4682
31 lines
661 B
C++
Executable File
31 lines
661 B
C++
Executable File
// 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()
|
|
};
|