64 lines
1.7 KiB
C++
64 lines
1.7 KiB
C++
#if !defined(AFX_CONTACTSVIEWDLG_H__D9199E03_7CD5_11D4_964F_00C0F02C4B69__INCLUDED_)
|
|
#define AFX_CONTACTSVIEWDLG_H__D9199E03_7CD5_11D4_964F_00C0F02C4B69__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
// ContactsViewDlg.h : header file
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CContactsViewDlg dialog
|
|
#include "gzrset.h"
|
|
#include "label.h"
|
|
#include "gzlistbox.h"
|
|
class CContactsViewDlg : public CDialog
|
|
{
|
|
// Construction
|
|
public:
|
|
CString m_strFirstRecordID;
|
|
~CContactsViewDlg();
|
|
CSpApp* m_pApp;
|
|
GZRset* rs;
|
|
void FillView();
|
|
CString m_strClientID;
|
|
void Setup(CString strClientID);
|
|
CContactsViewDlg(CWnd* pParent = NULL); // standard constructor
|
|
|
|
// Dialog Data
|
|
//{{AFX_DATA(CContactsViewDlg)
|
|
enum { IDD = IDD_CONTACTS_VIEW };
|
|
CgzListBox m_lstNBRecs;
|
|
CEdit m_edNotes;
|
|
//}}AFX_DATA
|
|
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(CContactsViewDlg)
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
protected:
|
|
|
|
// Generated message map functions
|
|
//{{AFX_MSG(CContactsViewDlg)
|
|
afx_msg void OnBtnadd();
|
|
virtual BOOL OnInitDialog();
|
|
afx_msg void OnBtndone();
|
|
afx_msg void OnSelchangeLstnbrecs();
|
|
afx_msg void OnBtnedit();
|
|
afx_msg void OnBtndel();
|
|
afx_msg void OnDblclkLstnbrecs();
|
|
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_CONTACTSVIEWDLG_H__D9199E03_7CD5_11D4_964F_00C0F02C4B69__INCLUDED_)
|