1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #if !defined(AFX_SetChildMsg_H__D0D56FDB_04DB_4D8B_AE4F_326F94B06263__INCLUDED_)
- #define AFX_SetChildMsg_H__D0D56FDB_04DB_4D8B_AE4F_326F94B06263__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif
- class SetChildMsg : public CDialog
- {
- CString m_olddays;
- CStringArray daysarray;
- CStringArray contentarray;
- CArray<int,int>checkarray;
- // Construction
- public:
- int m_mode;
- void GetData();
- BOOL HasDay(CString days);
- SetChildMsg(CWnd* pParent = NULL); // standard constructor
- enum { IDD = IDD_DLGSetChildMsg };
- CComboBox m_combo1;
- CListBox m_List1;
- BOOL m_check1;
- CString m_days;
- CString m_content;
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- protected:
- virtual BOOL OnInitDialog();
- afx_msg void OnSelchangeList1();
- afx_msg void OnBUTadd();
- afx_msg void OnBUTdel();
- afx_msg void OnChangeEdit1();
- DECLARE_MESSAGE_MAP()
- };
- #endif
|