2025-04-27 07:49:33 -04:00

85 lines
1.8 KiB
C++

// connectdlg.cpp : implementation 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.
//=--------------------------------------------------------------------------=
#include "stdafx.h"
#include "mqfdraw.h"
#include "connectdlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CConnectDlg dialog
CConnectDlg::CConnectDlg(CWnd* pParent /*=NULL*/)
: CDialog(CConnectDlg::IDD, pParent)
{
//{{AFX_DATA_INIT(CConnectDlg)
m_iRadioDS = 0;
//}}AFX_DATA_INIT
}
void CConnectDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CConnectDlg)
DDX_Control(pDX, IDCANCEL, m_CancelButton);
DDX_Control(pDX, IDC_RADIO_DS, m_cRadioDS);
DDX_Control(pDX, IDOK, m_cContinueButton);
DDX_Radio(pDX, IDC_RADIO_DS, m_iRadioDS);
DDX_Control(pDX, IDC_RADIO_WORKGROUP, m_cRadioWorkgroup);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CConnectDlg, CDialog)
//{{AFX_MSG_MAP(CLoginDlg)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
BOOL CConnectDlg::OnInitDialog()
{
CDialog::OnInitDialog();
//
// Display the login name in the window title.
//
SetWindowText(m_strLogin);
return TRUE; // return TRUE unless you set the focus to a control.
}