123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- // DBConfigDlg.h : header file
- //
- #if !defined(AFX_DBCONFIGDLG_H__7E209E4E_D6AC_431D_B14C_1CC304BEF711__INCLUDED_)
- #define AFX_DBCONFIGDLG_H__7E209E4E_D6AC_431D_B14C_1CC304BEF711__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- /////////////////////////////////////////////////////////////////////////////
- // DBConfig dialog
- class DBConfig : public CDialog
- {
- // Construction
- public:
- void EnableCtrl();
- DBConfig(CWnd* pParent = NULL); // standard constructor
- // Dialog Data
- //{{AFX_DATA(DBConfig)
- enum { IDD = IDD_DLGDBCONFIG };
- int m_bSql;
- CString m_server;
- CString m_user;
- CString m_psw;
- //}}AFX_DATA
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(DBConfig)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- // Generated message map functions
- //{{AFX_MSG(DBConfig)
- virtual BOOL OnInitDialog();
- afx_msg void OnRadio1();
- afx_msg void OnRadio2();
- virtual void OnOK();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_DBCONFIGDLG_H__7E209E4E_D6AC_431D_B14C_1CC304BEF711__INCLUDED_)
|