资源简介
使用对话框实现向指定的ip和端口发送文件,发送数据,获取本机ip,多线程操作
代码片段和文件信息
// Server.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “Server.h“
#include “ServerDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CServerApp
BEGIN_MESSAGE_MAP(CServerApp CWinApp)
//{{AFX_MSG_MAP(CServerApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CServerApp construction
CServerApp::CServerApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CServerApp object
CServerApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CServerApp initialization
BOOL CServerApp::InitInstance()
{
if (!AfxSocketInit())
{
AfxMessageBox(IDP_SOCKETS_INIT_FAILED);
return FALSE;
}
// 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.
CServerDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1136 2010-09-17 15:25 Server\Server.clw
文件 1951 2000-07-27 20:46 Server\Server.cpp
文件 4141 2000-07-27 21:19 Server\Server.dsp
文件 535 2000-07-27 20:47 Server\Server.dsw
文件 1324 2000-07-27 20:46 Server\Server.h
文件 91136 2010-09-17 15:25 Server\Server.ncb
文件 663 2010-09-17 15:25 Server\Server.plg
文件 208 2000-07-27 20:46 Server\StdAfx.cpp
文件 1047 2000-07-27 20:46 Server\StdAfx.h
文件 913 2010-09-17 11:25 Server\resource.h
文件 2271 2010-09-17 11:28 Server\ServerDlg.h
文件 6199 2010-09-17 12:15 Server\ServerDlg.cpp
文件 1078 2000-07-27 20:46 Server\res\Server.ico
文件 398 2000-07-27 20:46 Server\res\Server.rc2
文件 8800 2010-09-17 12:20 Server\Release\Server.res
文件 7224632 2010-09-17 12:20 Server\Release\Server.pch
文件 50176 2010-09-17 12:20 Server\Release\vc60.idb
文件 1539020 2010-09-17 12:20 Server\Release\StdAfx.sbr
文件 726 2010-09-17 12:20 Server\Release\StdAfx.obj
文件 2685 2010-09-17 12:20 Server\Release\Server.sbr
文件 5703 2010-09-17 12:20 Server\Release\ServerDlg.sbr
文件 23125 2010-09-17 12:20 Server\Release\ServerDlg.obj
文件 8751 2010-09-17 12:20 Server\Release\Server.obj
文件 151552 2010-09-17 12:20 Server\Release\Server.exe
文件 3695616 2010-09-01 17:00 Server\Debug\Server.bsc
文件 2680 2010-09-17 15:25 Server\Debug\Server.res
文件 197632 2010-09-17 15:25 Server\Debug\vc60.idb
文件 6953584 2010-09-17 12:20 Server\Debug\Server.pch
文件 364544 2010-09-17 12:20 Server\Debug\vc60.pdb
文件 1383840 2010-09-17 12:20 Server\Debug\StdAfx.sbr
............此处省略18个文件信息
- 上一篇:UserGuide_IPNC_RDK_DM36x
- 下一篇:现在雷达技术
相关资源
- 运用定时器函数制作计时器
- 宿舍管理系统源代码+论文 有图形界面
- 串口调试助手 vc 源代码
- 分包发送数据串口通信点击按钮自动
- 欧姆龙PLC以太网通讯在线调试过OK
-
ob
jectARX自定义实体简单 - 基于STM32F103的RS485通信采用DMA方式发送
- 由三点三维坐标计算圆半径和圆心位
- 人脸识别系统-毕业设计
- LPC1768 LwIP UDP Client 发送数据+测试网
- 利用NI的GPIB-USB-HS控制FLUKE8508A
- TFIDF算法实现
- 五子棋算法比较强悍
- md3loader,导入md3模型源程序
- modbus上位机测试源码
- TradeX.dll 演示程序
- Canny算子源代码
- STM32F107-lwip-UDP-client发送数据
- VC锁屏屏蔽热键
- Visual C 6.0
- STM32 L053串口中断接收不定长数据DMA发
- 商品库存管理系统(源码+数据库+论文
- CCD发送数据到上位机.zip
- VC OpenCV车牌识别
- 中国象棋源码+论文人工智能,搜索算
- OpenCV实现多目三维重建
- vc运行库修复工具
- 获取屏幕上任意一点的RGB值
- 奔腾绿色浏览器
- STM32L4使用SPI发送数据
评论
共有 条评论