中间件标准版5.1git,去除基础模块

DialogDbInit.h 578B

123456789101112131415161718192021222324252627282930
  1. #pragma once
  2. // CDialogDbInit 对话框
  3. class CDialogDbInit : public CDialogEx
  4. {
  5. DECLARE_DYNAMIC(CDialogDbInit)
  6. public:
  7. CDialogDbInit(CWnd* pParent = NULL); // 标准构造函数
  8. virtual ~CDialogDbInit();
  9. // 对话框数据
  10. enum { IDD = IDD_DLG_DB_INIT };
  11. protected:
  12. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
  13. virtual BOOL PreTranslateMessage(MSG* pMsg);
  14. virtual BOOL OnInitDialog();
  15. afx_msg void OnBnClickedOk();
  16. afx_msg void OnBnClickedCancel();
  17. DECLARE_MESSAGE_MAP()
  18. private:
  19. CComboBox m_CmbDbType;
  20. BOOL m_InitCfgTable;
  21. BOOL m_InitSTable;
  22. };