资源简介
vc++ 编写的基于TCP协议的客户/服务器程序--客户端。服务器端已上传。先运行服务器端,再运行客户端。效果:在第一个编辑框中输入内容,如果点“查询数据”,则在第二个和第三个编辑框中出现第一个编辑框输入的内容分别+a和+b。如果点“插入数据”,则在服务器端弹出对话框,显示这些内容。
本科毕业设计可以照着改一下,加点数据库什么的就挺好了。
代码片段和文件信息
// SendClient.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “SendClient.h“
#include “SendClientDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CSendClientApp
BEGIN_MESSAGE_MAP(CSendClientApp CWinApp)
//{{AFX_MSG_MAP(CSendClientApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CSendClientApp construction
CSendClientApp::CSendClientApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CSendClientApp object
CSendClientApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CSendClientApp initialization
BOOL CSendClientApp::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
CSendClientDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 110685 2008-10-11 20:01 SendClient\Debug\SendClient.exe
文件 3651 2008-10-04 20:40 SendClient\ReadMe.txt
文件 1078 2008-10-04 20:40 SendClient\res\SendClient.ico
文件 402 2008-10-04 20:40 SendClient\res\SendClient.rc2
文件 1009 2008-10-11 19:26 SendClient\Resource.h
文件 36328 2008-10-11 19:26 SendClient\SendClient.aps
文件 1510 2008-10-11 20:00 SendClient\SendClient.clw
文件 2213 2008-10-04 20:40 SendClient\SendClient.cpp
文件 4232 2008-10-04 21:42 SendClient\SendClient.dsp
文件 545 2008-10-04 20:40 SendClient\SendClient.dsw
文件 1368 2008-10-04 20:40 SendClient\SendClient.h
文件 66560 2008-10-11 20:55 SendClient\SendClient.ncb
文件 48640 2008-10-11 20:54 SendClient\SendClient.opt
文件 1223 2008-10-11 20:01 SendClient\SendClient.plg
文件 5869 2008-10-11 19:26 SendClient\SendClient.rc
文件 7887 2008-10-11 20:01 SendClient\SendClientDlg.cpp
文件 1681 2008-10-11 20:00 SendClient\SendClientDlg.h
文件 212 2008-10-04 20:40 SendClient\StdAfx.cpp
文件 1159 2008-10-11 19:26 SendClient\StdAfx.h
目录 0 2008-10-04 20:40 SendClient\Debug
目录 0 2008-10-04 20:40 SendClient\res
目录 0 2008-10-11 20:54 SendClient
----------- --------- ---------- ----- ----
296252 22
- 上一篇:VC++红色画笔五边形
- 下一篇:QR码生成C++源码
相关资源
- 基于STM32F407的W5500 tcpserver(官网例程
- 基于CS的TCP文件传输程序设计
- TCP/IP客户端和服务器端源代码,好用
- modbus tcp/ip 简单通讯
- libnet发送udp和tcp包
- socket tcp应用
- TCP/IP与串口调试
- VC++基于OpenGL模拟的一个3维空间模型
- Tcp自定义命令调试工具
- Qt TCP聊天室demo
- 基于VC++的SolidWorks二次开发SolidWorks
- TCP服务端和TCP客户端通讯
- 派克变换VC++源码(附文档)
- VC++ 串口
- VC++ 大富翁4_大富翁游戏源码
- VC++ 摄像头视频采集与回放源程序
- 转 VC++ 实现电子邮件(Email)发送
- 基于MFC的VC++仿QQ浏览器源码(雏形)
- VC++ 服务程序编写及安装与卸载
- VC++6.0番茄西红柿VAXvirsual assist X完美破
- 基于改进的fcm算法的图像分割vc++
- VC++6.0 绿色版,免安装,非常好用。
- Microsoft Visual C++ 2005 Redistributable Pack
- VC++MFC课程设计的学生成绩管理系统
- 大智慧365DLL插件设计
- VC++6.0汉化包
- VC++完整商业界面源码(再上传)
- VC++编程技术600个大型项目源码.rar
- VC++实现RSA加密算法
- VC++ 中国象棋经典游戏源代码
评论
共有 条评论