-
Notifications
You must be signed in to change notification settings - Fork 0
/
BBSUSER.H
61 lines (54 loc) · 1.36 KB
/
BBSUSER.H
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// bbsuser.h : header file
//
#include "SAPrefsSubDlg.h"
/////////////////////////////////////////////////////////////////////////////
// bbsuser dialog
class bbsuser : public CSAPrefsSubDlg
{
// Construction
public:
bbsuser(CWnd* pParent = NULL); // standard constructor
int MakeString(CString &line);
int DispString(CString line);
int FillDropDowns(void);
LPCSTR GetName(void);
// Dialog Data
//{{AFX_DATA(bbsuser)
enum { IDD = IDD_BBS_USERS };
CEdit m_edit_remain;
CListBox m_list;
CEdit m_edit_town;
CEdit m_edit_tel;
CEdit m_edit_street;
CEdit m_edit_password;
CEdit m_edit_name;
CEdit m_edit_modemfax;
CEdit m_edit_lines;
CEdit m_edit_groups;
CComboBox m_dd_level;
CComboBox m_dd_language;
CButton m_check_ansi;
//}}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(bbsuser)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
//{{AFX_MSG(bbsuser)
virtual BOOL OnInitDialog();
afx_msg void OnHelp();
afx_msg void OnAdd();
afx_msg void OnDelete();
afx_msg void OnChange();
virtual void OnOK();
afx_msg void OnSelchangeList();
afx_msg void OnChangeEditPassword();
afx_msg void OnChangeEditRemain();
afx_msg BOOL OnHelpInfo(HELPINFO* pHelpInfo);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};