-
Notifications
You must be signed in to change notification settings - Fork 2
/
SurveySearchDialog.h
47 lines (43 loc) · 1.24 KB
/
SurveySearchDialog.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
// SurveySearchDialog.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// SurveySearchDialog dialog
class COnStationDoc;
class CLegQuery;
class SurveySearchDialog : public CDialog
{
// Construction
public:
SurveySearchDialog(COnStationDoc * pDocument,CWnd* pParent = NULL); // standard constructor
CLegQuery * m_pLegQuery;
// Dialog Data
//{{AFX_DATA(SurveySearchDialog)
enum { IDD = IDD_SEARCHSURVEYS };
CEdit m_NameControl;
CEdit m_StationControl;
CEdit m_DescriptionControl;
CEdit m_PersonelControl;
CComboBox m_ComboDateType;
CString m_szSurveyName;
CString m_szSurveyDescription;
CString m_szSurveyPersonnel;
CString m_szSurveyStations;
BOOL m_CheckedORSearch;
//}}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(SurveySearchDialog)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
COnStationDoc * m_pDocument;
// Generated message map functions
//{{AFX_MSG(SurveySearchDialog)
afx_msg void OnDisplayresults();
virtual BOOL OnInitDialog();
afx_msg void OnSelchangeCombo1();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};