home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / mslang / dbeng / dbengsam.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-06-11  |  1.1 KB  |  48 lines

  1. // dbengsam.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CDBENGSAMP dialog
  6.  
  7. class CDBENGSAMP : public CDialog
  8. {
  9. // Construction
  10. public:
  11.     CDBENGSAMP(CWnd* pParent = NULL);    // standard constructor
  12.  
  13. // Dialog Data
  14.     //{{AFX_DATA(CDBENGSAMP)
  15.     enum { IDD = IDD_DIALOG1 };
  16.     CVBControl*    m_dbengine;
  17.     CString    m_id;
  18.     CString    m_lastname;
  19.     CString    m_firstname;
  20.     CString    m_mi;
  21.     //}}AFX_DATA
  22.  
  23. // Implementation
  24. protected:
  25.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  26.     void FillForm(); 
  27.     void PutForm();
  28.     void DisplayError();
  29.     
  30.     // Generated message map functions
  31.     //{{AFX_MSG(CDBENGSAMP)
  32.     afx_msg void OnCreateTable();
  33.     afx_msg void OnCreateIndex();
  34.     afx_msg void OnOpenTable();
  35.     afx_msg void OnCloseTable();
  36.     afx_msg void OnTop();
  37.     afx_msg void OnBottom();
  38.     afx_msg void OnNext();
  39.     afx_msg void OnPrevious();
  40.     afx_msg void OnInsert();
  41.     afx_msg void OnUpdate();
  42.     afx_msg void OnDelete();
  43.     afx_msg void OnClear();
  44.     afx_msg void OnHide();
  45.     //}}AFX_MSG
  46.     DECLARE_MESSAGE_MAP()
  47. };
  48.