home *** CD-ROM | disk | FTP | other *** search
- // LoginDlg.h : header file
- //
- // This file is part of Microsoft SQL Server online documentation.
- // Copyright (C) 1992-1997 Microsoft Corporation. All rights reserved.
- //
- // This source code is an intended supplement to the Microsoft SQL
- // Server online references and related electronic documentation.
-
- /////////////////////////////////////////////////////////////////////////////
- // CLoginDlg dialog
- class CLoginDlg : public CDialog
- {
- // Construction
- public:
- CLoginDlg(CWnd* pParent = NULL); // standard constructor
-
- // Dialog Data
- //{{AFX_DATA(CLoginDlg)
- enum { IDD = IDD_LOGIN };
- CButton m_chkIntegrated;
- CStatic m_staticUID;
- CButton m_grpUData;
- CStatic m_staticPWD;
- CEdit m_editUID;
- CEdit m_editPWD;
- CComboBox m_comboDSN;
- BOOL m_bIntegrated;
- CString m_strPWD;
- CString m_strUID;
- //}}AFX_DATA
-
- CString m_strDSN;
-
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CLoginDlg)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
-
- // Implementation
- protected:
-
- // Generated message map functions
- //{{AFX_MSG(CLoginDlg)
- afx_msg void OnSelchangeComboDsn();
- afx_msg void OnCheckIntegrated();
- virtual BOOL OnInitDialog();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-