EmpList.h
上传用户:jimmy1212
上传日期:2020-11-02
资源大小:40k
文件大小:1k
源码类别:

Static控件

开发平台:

Visual C++

  1. #if !defined(AFX_EMPLIST_H__1DBFF94F_6136_4E92_81BC_8678020A1459__INCLUDED_)
  2. #define AFX_EMPLIST_H__1DBFF94F_6136_4E92_81BC_8678020A1459__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // EmpList.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CEmpList DAO recordset
  10. class CEmpList : public CDaoRecordset
  11. {
  12. public:
  13. CEmpList(CDaoDatabase* pDatabase = NULL);
  14. DECLARE_DYNAMIC(CEmpList)
  15. // Field/Param Data
  16. //{{AFX_FIELD(CEmpList, CDaoRecordset)
  17. CString m_FirstName;
  18. CString m_LastName;
  19. CString m_DeptName;
  20. short m_DeptID;
  21. double m_Salary;
  22. //}}AFX_FIELD
  23. // Overrides
  24. // ClassWizard generated virtual function overrides
  25. //{{AFX_VIRTUAL(CEmpList)
  26. public:
  27. virtual CString GetDefaultDBName(); // Default database name
  28. virtual CString GetDefaultSQL(); // Default SQL for Recordset
  29. virtual void DoFieldExchange(CDaoFieldExchange* pFX);  // RFX support
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. #ifdef _DEBUG
  33. virtual void AssertValid() const;
  34. virtual void Dump(CDumpContext& dc) const;
  35. #endif
  36. };
  37. //{{AFX_INSERT_LOCATION}}
  38. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  39. #endif // !defined(AFX_EMPLIST_H__1DBFF94F_6136_4E92_81BC_8678020A1459__INCLUDED_)