SelectSrvDlg.h
上传用户:nameszq
上传日期:2014-08-12
资源大小:336k
文件大小:2k
源码类别:

金融证券系统

开发平台:

Visual C++

  1. #if !defined(AFX_SELECTSRVDLG_H__5B1B6E48_7583_4DF6_82F3_C4BAEBC42891__INCLUDED_)
  2. #define AFX_SELECTSRVDLG_H__5B1B6E48_7583_4DF6_82F3_C4BAEBC42891__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // SelectSrvDlg.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CSelectSrvDlg dialog
  10. class CSelectSrvDlg : public CDialog
  11. {
  12. // Construction
  13. public:
  14. CSelectSrvDlg(CWnd* pParent = NULL);   // standard constructor
  15. CString GetServer() { return m_strAddress; }
  16. UINT GetPort() { return m_nPort; }
  17. CString GetUser() { return m_strUser; }
  18. CString GetPasswd() { return m_strPasswd; }
  19. protected:
  20. CString m_strAddress;
  21. UINT m_nPort;
  22. void SetupComboServer( );
  23. // Dialog Data
  24. //{{AFX_DATA(CSelectSrvDlg)
  25. enum { IDD = IDD_SELECTSERVER };
  26. CButton m_btnOK;
  27. CComboBox m_comboServer;
  28. CString m_strUser;
  29. CString m_strPasswd;
  30. BOOL m_bSavePasswd;
  31. //}}AFX_DATA
  32. // Overrides
  33. // ClassWizard generated virtual function overrides
  34. //{{AFX_VIRTUAL(CSelectSrvDlg)
  35. public:
  36. virtual int DoModal();
  37. protected:
  38. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  39. //}}AFX_VIRTUAL
  40. // Implementation
  41. protected:
  42. // Generated message map functions
  43. //{{AFX_MSG(CSelectSrvDlg)
  44. afx_msg void OnSelchangeComboServer();
  45. afx_msg void OnAdd();
  46. afx_msg void OnModify();
  47. afx_msg void OnDelete();
  48. virtual void OnOK();
  49. afx_msg void OnProxySet();
  50. virtual BOOL OnInitDialog();
  51. //}}AFX_MSG
  52. DECLARE_MESSAGE_MAP()
  53. };
  54. //{{AFX_INSERT_LOCATION}}
  55. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  56. #endif // !defined(AFX_SELECTSRVDLG_H__5B1B6E48_7583_4DF6_82F3_C4BAEBC42891__INCLUDED_)