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