65 lines
1.6 KiB
C++
65 lines
1.6 KiB
C++
#if !defined(AFX_CONTACTDLG_H__126794C1_2CE8_11D4_964F_00C0F02C4B69__INCLUDED_)
|
|
#define AFX_CONTACTDLG_H__126794C1_2CE8_11D4_964F_00C0F02C4B69__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
// ContactDlg.h : header file
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CContactDlg dialog
|
|
#include "gzrset.h"
|
|
#include "label.h"
|
|
class CContactDlg : public CDialog
|
|
{
|
|
// Construction
|
|
public:
|
|
void FillFields();
|
|
CString m_strRecordID;
|
|
bool m_bEditMode;
|
|
~CContactDlg();
|
|
CSpApp* m_pApp;
|
|
GZRset* rs;
|
|
CString m_strClientID;
|
|
bool* m_pbDelete;
|
|
void Setup(CString strClientID,CString strRecordID);
|
|
CContactDlg(CWnd* pParent = NULL); // standard constructor
|
|
|
|
// Dialog Data
|
|
//{{AFX_DATA(CContactDlg)
|
|
enum { IDD = IDD_CONTACTS };
|
|
CEdit m_edNotes;
|
|
CDateTimeCtrl m_dtTime;
|
|
CDateTimeCtrl m_dtDate;
|
|
|
|
|
|
//}}AFX_DATA
|
|
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(CContactDlg)
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
protected:
|
|
|
|
// Generated message map functions
|
|
//{{AFX_MSG(CContactDlg)
|
|
virtual BOOL OnInitDialog();
|
|
afx_msg void OnBtnfollowup();
|
|
afx_msg void OnBtnexitnosave();
|
|
afx_msg void OnBtnexitsave();
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
|
|
};
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
|
|
|
#endif // !defined(AFX_CONTACTDLG_H__126794C1_2CE8_11D4_964F_00C0F02C4B69__INCLUDED_)
|