65 lines
1.6 KiB
C++
65 lines
1.6 KiB
C++
#if !defined(AFX_FINDCLIENTDLG_H__CA8D53C8_2FB6_11D4_964F_00C0F02C4B69__INCLUDED_)
|
|
#define AFX_FINDCLIENTDLG_H__CA8D53C8_2FB6_11D4_964F_00C0F02C4B69__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
// FindClientDlg.h : header file
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CFindClientDlg dialog
|
|
|
|
#include "gzrset.h"
|
|
#include "label.h"
|
|
|
|
class CFindClientDlg : public CDialog
|
|
{
|
|
// Construction
|
|
public:
|
|
~CFindClientDlg();
|
|
void SetReturn(CString* strReturnClientID);
|
|
CFindClientDlg(CWnd* pParent = NULL); // standard constructor
|
|
CSpApp* m_pApp;
|
|
GZRset* rs;
|
|
CString * m_pstrReturnValue;
|
|
// Dialog Data
|
|
//{{AFX_DATA(CFindClientDlg)
|
|
enum { IDD = IDD_FINDCLIENT };
|
|
CEdit m_edAccount;
|
|
CLabel m_lblResults;
|
|
CEdit m_edSN;
|
|
CEdit m_edPhone;
|
|
CEdit m_edEmail;
|
|
CButton m_btnSearch;
|
|
CButton m_btnDone;
|
|
//}}AFX_DATA
|
|
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(CFindClientDlg)
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
protected:
|
|
|
|
// Generated message map functions
|
|
//{{AFX_MSG(CFindClientDlg)
|
|
afx_msg void OnBtndone();
|
|
afx_msg void OnBtnsearch();
|
|
virtual BOOL OnInitDialog();
|
|
afx_msg void OnBtnclear();
|
|
afx_msg void OnBtncancel();
|
|
virtual void OnOK();
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
|
|
|
#endif // !defined(AFX_FINDCLIENTDLG_H__CA8D53C8_2FB6_11D4_964F_00C0F02C4B69__INCLUDED_)
|