1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #pragma once
- class CDlgSetIni : public CDialog
- {
- DECLARE_DYNAMIC(CDlgSetIni)
- public:
- CDlgSetIni(CWnd* pParent = NULL);
- virtual ~CDlgSetIni();
- enum { IDD = IDD_DLGSETINI };
- protected:
- virtual void DoDataExchange(CDataExchange* pDX);
- 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);
- };
|