home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / database / extbind / modeldlg.h < prev    next >
C/C++ Source or Header  |  1998-03-26  |  2KB  |  61 lines

  1. // modeldlg.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CMainDlg dialog
  15. #include "msdgrid.h"
  16. #include "rdc.h"
  17.  
  18. class CMainDlg : public CDialog
  19. {
  20. // Construction
  21. public:
  22.     CMainDlg(CWnd* pParent = NULL); // standard constructor
  23.  
  24.     void BoxDone();
  25.  
  26. // Dialog Data
  27.     //{{AFX_DATA(CMainDlg)
  28.     enum { IDD = IDD_MAIN_DIALOG };
  29.         // NOTE: the ClassWizard will add data members here
  30.     //}}AFX_DATA
  31.  
  32.     // ClassWizard generated virtual function overrides
  33.     //{{AFX_VIRTUAL(CMainDlg)
  34.     protected:
  35.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  36.     //}}AFX_VIRTUAL
  37.  
  38. // Implementation
  39. protected:
  40.     HICON m_hIcon;
  41.     CNwindDialog* m_pNWind;
  42.     CMsDgridCtrl m_pGrid;
  43.     CRdc m_pDSC;
  44.  
  45.     // Generated message map functions
  46.     //{{AFX_MSG(CMainDlg)
  47.     virtual BOOL OnInitDialog();
  48.     afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  49.     afx_msg void OnPaint();
  50.     afx_msg HCURSOR OnQueryDragIcon();
  51.     virtual void OnOK();
  52.     afx_msg void OnAddpub();
  53.     afx_msg BOOL OnRequestEdit(UINT nCtl, BOOL* pBool);
  54.     afx_msg BOOL OnChanged(UINT nCtl);
  55.     afx_msg BOOL OnDSCNotifyNwind(DSCSTATE nState, DSCREASON nReason, BOOL* pBool);
  56.     afx_msg BOOL OnDSCNotifyPubs(DSCSTATE nState, DSCREASON nReason, BOOL* pBool);
  57.     DECLARE_EVENTSINK_MAP()
  58.     //}}AFX_MSG
  59.     DECLARE_MESSAGE_MAP()
  60. };
  61.