• 大小: 3.66MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-10-01
  • 语言: C/C++
  • 标签: MFC  网络时钟  

资源简介

设计内容:通过网络在客户端计算机和服务器端计算机之间传送计算机的时钟信息,在某台计算机上可以显示网络上其他计算机的时钟信息。 基本要求: 操作员在服务器端计算机上发出发送时钟信息命令,服务器端计算机上显示本机时钟信息,并将服务器计算机上时钟信息通过网络发送到每个客户计算机上,客户计算机上显示服务器端计算机时钟信息。 操作员在客户计算机上发出发送本机时钟信息命令给服务器端计算机,服务器端计算机显示客户端计算机的时钟信息。 提高要求: 客户端计算机动态显示当前服务器端计算机时钟信息。 服务器端计算机可同时显示多个连接的客户机上的时钟信息。 服务器端计算机可修改指定客户机上的时钟。 客户端计算机修改

资源截图

代码片段和文件信息

// 09003711B.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “09003711B.h“
#include “09003711BDlg.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CMy09003711BApp

BEGIN_MESSAGE_MAP(CMy09003711BApp CWinApp)
//{{AFX_MSG_MAP(CMy09003711BApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
//    DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CMy09003711BApp construction

CMy09003711BApp::CMy09003711BApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CMy09003711BApp object

CMy09003711BApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CMy09003711BApp initialization

BOOL CMy09003711BApp::InitInstance()
{
if (!AfxSocketInit())
{
AfxMessageBox(IDP_SOCKETS_INIT_FAILED);
return FALSE;
}

AfxEnableControlContainer();

// Standard initialization
// If you are not using these features and wish to reduce the size
//  of your final executable you should remove from the following
//  the specific initialization routines you do not need.

#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif

CMy09003711BDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
//  dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
//  dismissed with Cancel
}

// Since the dialog has been closed return FALSE so that we exit the
//  application rather than start the application‘s message pump.
return FALSE;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      36384  2012-06-20 21:48  客户端\09003711B.APS

     文件       1678  2012-06-21 12:31  客户端\09003711B.clw

     文件       2221  2012-06-19 09:22  客户端\09003711B.cpp

     文件       4410  2012-06-16 23:59  客户端\09003711B.dsp

     文件       1367  2012-06-19 09:22  客户端\09003711B.h

     文件      41984  2012-07-12 16:27  客户端\09003711B.ncb

     文件      53760  2012-07-12 16:27  客户端\09003711B.opt

     文件       1879  2012-07-12 16:27  客户端\09003711B.plg

     文件       5897  2012-06-20 21:48  客户端\09003711B.rc

     文件       6602  2012-06-21 08:30  客户端\09003711BDlg.cpp

     文件       1613  2012-06-19 09:23  客户端\09003711BDlg.h

     文件       1549  2012-06-20 21:48  客户端\ClientSocket.cpp

     文件       1192  2012-06-21 08:32  客户端\ClientSocket.h

     文件     110661  2012-07-12 16:27  客户端\Debug\09003711B.exe

     文件     234932  2012-07-12 16:27  客户端\Debug\09003711B.ilk

     文件      14465  2012-07-12 16:27  客户端\Debug\09003711B.obj

     文件    5575884  2012-07-12 16:27  客户端\Debug\09003711B.pch

     文件     295936  2012-07-12 16:27  客户端\Debug\09003711B.pdb

     文件       2908  2012-07-12 16:27  客户端\Debug\09003711B.res

     文件      32882  2012-07-12 16:27  客户端\Debug\09003711BDlg.obj

     文件       6867  2012-07-12 16:27  客户端\Debug\ClientSocket.obj

     文件     106544  2012-07-12 16:27  客户端\Debug\StdAfx.obj

     文件     205824  2012-07-12 16:27  客户端\Debug\vc60.idb

     文件     364544  2012-07-12 16:27  客户端\Debug\vc60.pdb

     文件       3639  2012-06-16 23:48  客户端\ReadMe.txt

     文件       1078  2012-06-16 23:48  客户端\res\09003711B.ico

     文件        401  2012-06-16 23:48  客户端\res\09003711B.rc2

     文件        962  2012-06-17 00:01  客户端\resource.h

     文件        211  2012-06-16 23:48  客户端\StdAfx.cpp

     文件       1102  2012-06-16 23:48  客户端\StdAfx.h

............此处省略46个文件信息

评论

共有 条评论