⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 customerview.h

📁 Visual C++ 2005的源代码
💻 H
字号:
// CustomerView.h : header file

#pragma once

class CCustomerSet;

class CCustomerView : public CRecordView
{
  //DECLARE_DYNCREATE(CCustomerView)
public:
  CCustomerView();  
  virtual ~CCustomerView();

public:
  enum { IDD = IDD_CUSTOMER_FORM };// Form Data
  CCustomerSet* m_pSet;


// Operations
public:
  CCustomerSet* GetRecordset(); 

#ifdef _DEBUG
  virtual void AssertValid() const;
  virtual void Dump(CDumpContext& dc) const;
#endif

protected:
  virtual void DoDataExchange(CDataExchange* pDX);
public:
  virtual CRecordset* OnGetRecordset();
public:
  virtual void OnInitialUpdate();
public:
  // Stores order date
  CTime m_OrderDate;
public:
  // Stores date order required
  CTime m_RequiredDate;
public:
  DECLARE_MESSAGE_MAP()
public:
  afx_msg void OnSelectproducts();
public:
  afx_msg void OnCancel();
public:
  long m_NewOrderID;
public:
  void SetNewOrderID(void);
};

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -