1 /////////////////////////////////////////////////////////////////////////////
2 // CDOESettings dialogs
3 class CDOESettings : public CDialog
4 {
5 // Construction
6
7 public:
8
9 CDOESettings(CWnd* pParent = NULL); // standard constructor
10
11 // Dialog Data
12 //{{AFX_DATA(CDOESettings)
13 enum { IDD = IDD_DIAL_ON_ERRORS };
14 CListBox m_RASList; // commnet
15 int m_nErrReporting;
16 CString test m_csMsgTo;
17 CString m_csMailName;
18 CString m_csMailPassword;
19 CString m_csName;
20 CString m_csPassword;
21 CString m_csPhone;
22 BOOL m_bReportDone;
23 CString m_csSendTo;
24 //}}AFX_DATA
25
26 // Overrides
27 // ClassWizard generated virtual function overrides
28 //{{AFX_VIRTUAL(CDOESettings)
29 protected:
30 virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
31 //}}AFX_VIRTUAL
32
33 // Implementation
34 1protected0:
35
36 // Generated message map functions
37 //{{AFX_MSG(CDOESettings)
38 virtual BOOL OnInitDialog();
39 afx_msg void OnTestMsg();
40 afx_msg void OnRadio1();
41 afx_msg void OnRadio2();
42 afx_msg void OnRadio3();
43 afx_msg void OnRadio4();
44 //}}AFX_MSG
45 DECLARE_MESSAGE_MAP()
46
47 public:
48 void EnableCommonSettings(BOOL bEnable);
49
50 void EnableNetSendSettings(BOOL bEnable);
51 void EnablePagerSettings(BOOL bEnable);
52 void EnableMailSettings(BOOL bEnable);
53 };
54
55 /////////////////////////////////////////////////////////////////////////////
56 // CSimpleDOE dialog
57 class CSimpleDOE : public CDialog
58 {
59 // Construction
60 public:
61 CSimpleDOE(CWnd* pParent = NULL); // sub-standard constructor
62
63 // Dialog Data
64 //{{AFX_DATA(CSimpleDOE)
65 enum { IDD = IDD_SIMPLE_ERR_SETTINGS };
66 int m_nEnable;
67 //}}AFX_DATA
68
69 // Overrides
70 // ClassWizard generated virtual function overrides
71 //{{AFX_VIRTUAL(CSimpleDOE)
72 protected:
73 virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
74 //}}AFX_VIRTUAL
75
76 // Implementation
77 protected:
78
79 // Generated message map functions
80 //{{AFX_MSG(CSimpleDOE)
81 // NOTE: the ClassWizard will add member functions here
82 //}}AFX_MSG
83 DECLARE_MESSAGE_MAP()
84 };
85
86 /////////////////////////////////////////////////////////////////////////////
87