69 lines
1.4 KiB
C
69 lines
1.4 KiB
C
|
#pragma once
|
|||
|
#include "afxdialogex.h"
|
|||
|
|
|||
|
|
|||
|
|
|||
|
class DLG_Corp_User;
|
|||
|
class CMainFrame;
|
|||
|
class DLG_ChangeCM;
|
|||
|
|
|||
|
|
|||
|
// DLG_Corp_User_Modify 对话框
|
|||
|
|
|||
|
class DLG_Corp_User_Modify : public CDialogEx
|
|||
|
{
|
|||
|
DECLARE_DYNAMIC(DLG_Corp_User_Modify)
|
|||
|
|
|||
|
|
|||
|
public:
|
|||
|
ANS_Corp_UserData m_User;
|
|||
|
CMainFrame* m_pMainFrame;
|
|||
|
DLG_ChangeCM* m_pDlgChangeCM;
|
|||
|
CString m_strCorpName;
|
|||
|
DLG_Corp_User* m_pUserDlg;
|
|||
|
POSITION m_Pos;
|
|||
|
|
|||
|
public:
|
|||
|
BOOL ProcessSocket(Socket_Head* pHead);
|
|||
|
BOOL ProcessSocket(Socket_Head_Add* pHead, BYTE* pFrame);
|
|||
|
ANS_Corp_UserData GetParam();
|
|||
|
void SetParam(CMainFrame* pFrame, CString strCorpName, ANS_Corp_UserData User, POSITION pos);
|
|||
|
|
|||
|
DLG_Corp_User_Modify(CWnd* pParent = nullptr); // 标准构造函数
|
|||
|
virtual ~DLG_Corp_User_Modify();
|
|||
|
|
|||
|
|
|||
|
|
|||
|
// 对话框数据
|
|||
|
#ifdef AFX_DESIGN_TIME
|
|||
|
enum { IDD = IDD_CORP_USER_MODIFY };
|
|||
|
#endif
|
|||
|
|
|||
|
protected:
|
|||
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
|
|||
|
|
|||
|
DECLARE_MESSAGE_MAP()
|
|||
|
public:
|
|||
|
COleDateTime m_tBirthday;
|
|||
|
CString m_strBZ;
|
|||
|
CString m_strCreateTime;
|
|||
|
CString m_strCreateUser;
|
|||
|
CString m_strCM;
|
|||
|
CString m_strEmail;
|
|||
|
CString m_strFax;
|
|||
|
CString m_strJob;
|
|||
|
CString m_strLoginCount;
|
|||
|
CString m_strLoginName;
|
|||
|
CString m_strLoginTime;
|
|||
|
CString m_strMobile;
|
|||
|
CString m_strName;
|
|||
|
CString m_strNickName;
|
|||
|
CString m_strQQ;
|
|||
|
int m_lSex;
|
|||
|
CString m_strSMSUsed;
|
|||
|
CString m_strSMSSendAll;
|
|||
|
CString m_strTel;
|
|||
|
afx_msg void OnBnClickedCorpUsermodifyChangecm();
|
|||
|
virtual BOOL OnInitDialog();
|
|||
|
};
|