Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
//Copyright (c) 1998 - 1999 Microsoft Corporation
/*++
Module Name:
CntDlg.cpp
Abstract: This Module contains the implementation of CConnectDialog class (Dialog box for Connecting to Server)
Author:
Arathi Kundapur (v-akunda) 11-Feb-1998
Revision History:
--*/
#include "stdafx.h"
#include "defines.h"
#include "LicMgr.h"
#include "LSServer.h"
#include "MainFrm.h"
#include "CntDlg.h"
#include "htmlhelp.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__; #endif
/////////////////////////////////////////////////////////////////////////////
// CConnectDialog dialog
CConnectDialog::CConnectDialog(CWnd* pParent /*=NULL*/) : CDialog(CConnectDialog::IDD, pParent) { //{{AFX_DATA_INIT(CConnectDialog)
m_Server = _T(""); //}}AFX_DATA_INIT
}
void CConnectDialog::DoDataExchange(CDataExchange* pDX) { CDialog::DoDataExchange(pDX); //{{AFX_DATA_MAP(CConnectDialog)
DDX_Text(pDX, IDC_SERVER, m_Server); DDV_MaxChars(pDX, m_Server, 100); //}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CConnectDialog, CDialog) //{{AFX_MSG_MAP(CConnectDialog)
ON_BN_CLICKED(IDC_HELP1, OnHelp1) //}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CConnectDialog message handlers
void CConnectDialog::OnHelp1() { // TODO: Add your control notification handler code here
TCHAR * pHtml = L"ts_lice_h_040.htm"; HtmlHelp(AfxGetMainWnd()->m_hWnd, L"tslic.chm", HH_DISPLAY_TOPIC,(DWORD_PTR)pHtml); }
|