home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 32 / IOPROG_32.ISO / SOFT / SqlEval7 / devtools / samples / ODBC / mfcperf / logindlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-05-20  |  1.3 KB  |  52 lines

  1. // LoginDlg.h : header file
  2. //
  3. // This file is part of Microsoft SQL Server online documentation.
  4. // Copyright (C) 1992-1997 Microsoft Corporation. All rights reserved.
  5. //
  6. // This source code is an intended supplement to the Microsoft SQL
  7. // Server online references and related electronic documentation.
  8.  
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CLoginDlg dialog
  11. class CLoginDlg : public CDialog
  12. {
  13. // Construction
  14. public:
  15.     CLoginDlg(CWnd* pParent = NULL);   // standard constructor
  16.  
  17. // Dialog Data
  18.     //{{AFX_DATA(CLoginDlg)
  19.     enum { IDD = IDD_LOGIN };
  20.     CButton    m_chkIntegrated;
  21.     CStatic    m_staticUID;
  22.     CButton    m_grpUData;
  23.     CStatic    m_staticPWD;
  24.     CEdit    m_editUID;
  25.     CEdit    m_editPWD;
  26.     CComboBox    m_comboDSN;
  27.     BOOL    m_bIntegrated;
  28.     CString    m_strPWD;
  29.     CString    m_strUID;
  30.     //}}AFX_DATA
  31.  
  32.     CString m_strDSN;
  33.  
  34. // Overrides
  35.     // ClassWizard generated virtual function overrides
  36.     //{{AFX_VIRTUAL(CLoginDlg)
  37.     protected:
  38.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  39.     //}}AFX_VIRTUAL
  40.  
  41. // Implementation
  42. protected:
  43.  
  44.     // Generated message map functions
  45.     //{{AFX_MSG(CLoginDlg)
  46.     afx_msg void OnSelchangeComboDsn();
  47.     afx_msg void OnCheckIntegrated();
  48.     virtual BOOL OnInitDialog();
  49.     //}}AFX_MSG
  50.     DECLARE_MESSAGE_MAP()
  51. };
  52.