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

  1. // DataSrcDlg.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. // CDataSrcDlg dialog
  15.  
  16. class CDataSrcDlg : public CDialog
  17. {
  18. // Construction
  19. public:
  20.     CDataSrcDlg(CString &DSN,CString &Sql,CString &User,CString &Pw,
  21.                          CWnd* pParent=NULL);
  22.  
  23. // Dialog Data
  24.     //{{AFX_DATA(CDataSrcDlg)
  25.     enum { IDD = IDD_DATASOURCE };
  26.     CString m_DSN;
  27.     CString m_User;
  28.     CString m_Sql;
  29.     CString m_Pw;
  30.     //}}AFX_DATA
  31.  
  32.  
  33. // Overrides
  34.     // ClassWizard generated virtual function overrides
  35.     //{{AFX_VIRTUAL(CDataSrcDlg)
  36.     protected:
  37.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  38.     //}}AFX_VIRTUAL
  39.  
  40. // Implementation
  41. protected:
  42.  
  43.     // Generated message map functions
  44.     //{{AFX_MSG(CDataSrcDlg)
  45.     virtual BOOL OnInitDialog();
  46.     //}}AFX_MSG
  47.     DECLARE_MESSAGE_MAP()
  48. };
  49.