资源简介
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
- 上一篇:pb酒店管理系统 源代码
- 下一篇:VC 实现鼠标画矩形和绘制直线
相关资源
- 基于CSocket的多人聊天室
- 采用WINSOCK2 编写的TCP/UDP通信程序
- Modbus TCP Client
- 树状导航菜单的制作
- VC工程转Qt工程文件的工具
- 易语言 TCP使用HTTP、SOCKES5代理IP。
- 西门子S7-1200 MODBUS-TCP通讯编程
- 200SMART Modbus-TCP通信程序演示-轮询(多
- TCP_UDP对结构体加密数据传输
- 基于PIC的TCP/IP网络协议和zigbee无线传
- 欧姆龙PLC tcp通信工具
- 欧姆龙以太网通讯TCP/UDP及欧姆龙PLC程
- 流媒体相关协议标准RTP/RTSP/RTCP PDF文档
- 航海模拟器中DCPA TCPA的算法
- TCPMP 支持ce6.0的播放器
- TCP/IP协议详解3卷全_高清_带书签
- stm32103c8t6ESP8266串口转WIFI模块TCP服务器
- DOS下的TCP-IP协议库文件原代码.rar
- 二进制方式打包和解包文件
- 《TCP/IP详解卷2:实现》pdf
- 《TCP/IP:协议分析与应用编程》课后
- Modbus—TCP协议
- 计算机网络socket编程实验
- vc写的一个游戏里面三维场景漫游
- FANUC机器人Socket Message通讯设置及使用
- Design and Implementation of the lwIP TCP_IP S
- 易语言TCP互通源码
- 解析抓包软件中tcp包装的数据并转换
- 利用同步TCP编写网络聊天程序
- 学生成绩档案管理系统—保证可用
评论
共有 条评论