1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #pragma once
- // CDlgSetIni 对话框
- class CDlgSetIni : public CDialog
- {
- DECLARE_DYNAMIC(CDlgSetIni)
- public:
- CDlgSetIni(CWnd* pParent = NULL); // 标准构造函数
- virtual ~CDlgSetIni();
- // 对话框数据
- enum { IDD = IDD_DLGSETINI };
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
- DECLARE_MESSAGE_MAP()
- public:
- // 局域共享账号
- CString m_strShareAccount;
- // 局域网共享密码
- CString m_strSharePasswd;
- CString m_strN8ViewSvrIP;
- CString m_strN8ViewUserDir;
- CString m_strN8ViewStsDir;
- CString m_strN8ViewProductDir;
- CString m_strN8ViewShareName;
- CString m_strN8ViewShareDir;
- public:
- virtual BOOL OnInitDialog();
- afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
- afx_msg void OnBnClickedOk();
- afx_msg void OnBnClickedCancel();
- afx_msg void OnBnClickedGetproductdir();
- afx_msg void OnBnClickedGetuserdir();
- afx_msg void OnBnClickedGetdatadir();
- afx_msg void OnBnClickedImportproduct();
- afx_msg void OnBnClickedImportstaff();
- afx_msg void OnBnClickedGetn8sharedir();
- afx_msg void OnBnClickedDispalyshare();
- virtual BOOL PreTranslateMessage(MSG* pMsg);
- };
|