• 大小: 39KB
    文件类型: .rar
    金币: 2
    下载: 1 次
    发布日期: 2021-06-17
  • 语言: C/C++
  • 标签: vc++  tcp  

资源简介

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


评论

共有 条评论