资源简介
设计内容:通过网络在客户端计算机和服务器端计算机之间传送计算机的时钟信息,在某台计算机上可以显示网络上其他计算机的时钟信息。
基本要求:
操作员在服务器端计算机上发出发送时钟信息命令,服务器端计算机上显示本机时钟信息,并将服务器计算机上时钟信息通过网络发送到每个客户计算机上,客户计算机上显示服务器端计算机时钟信息。
操作员在客户计算机上发出发送本机时钟信息命令给服务器端计算机,服务器端计算机显示客户端计算机的时钟信息。
提高要求:
客户端计算机动态显示当前服务器端计算机时钟信息。
服务器端计算机可同时显示多个连接的客户机上的时钟信息。
服务器端计算机可修改指定客户机上的时钟。
客户端计算机修改
代码片段和文件信息
// 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个文件信息
- 上一篇:学生信息管理系统C++简单教学版
- 下一篇:MFC UDP 聊天
相关资源
- MFC UDP 聊天
- MFC数字图像处理
- MFC_学生信息管理系统
- C++基于MFC与ACCESS数据库的成绩管理系
- MFC些的串口调试助手源码
- C++MFC界面美化源代码
- MFC资料两本详细讲解MFC的资料,对M
- 计算机图形学 图形变换 C++ MFC
- VS2010之MFC串口通信的编写教程
- mfc实现点击一个窗口弹出另一个窗口
- 一个会朗读文本的MFC应用程序
- MFC实现7种排序算法、比较时间复杂度
- MFC停车场车辆信息管理系统附数据库
- 温度数据采集系统程序上位机程序+
- 吕鑫MFC教学视频中的源代码
- 在vc下开发的canny边缘检测 MFC
- MFC 动态链接库的使用
- MFC做的用幻灯片模式播放图片,还有
- VC++MFC抓包程序源码
- MFC 多语言环境的实现
- PDFDemo和资料
- OpenCV_MFC_版本1.0.1
- OpenCV_MFC_版本1.0
- 图书馆管理系统 非常完善的数据库系
- win32应用程序中建立对话框
- 挖金矿游戏源码c++
- 利用MFC编写的一个模拟电梯程序
- DES MFC实现在VC6.0中
- MFC中B样条绘制
- 操作系统_生产者消费者c++、mfc实现
评论
共有 条评论