// connectdlg.h : header file // // //=--------------------------------------------------------------------------= // Copyright 1997-1999 Microsoft Corporation. All Rights Reserved. // // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A // PARTICULAR PURPOSE. //=--------------------------------------------------------------------------= // CConnectDlg dialog class CConnectDlg : public CDialog { // Construction public: CConnectDlg(CWnd* pParent = NULL); // standard constructor //Data CString m_strLogin; // Dialog Data //{{AFX_DATA(CConnectDlg) enum { IDD = IDD_DS}; CButton m_CancelButton; CButton m_cRadioDS; CButton m_cContinueButton; int m_iRadioDS; CButton m_cRadioWorkgroup; //}}AFX_DATA // 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(CConnectDlg) // NOTE: the ClassWizard will add member functions here virtual BOOL OnInitDialog(); afx_msg void OnConnect(); //}}AFX_MSG DECLARE_MESSAGE_MAP() private: };