资源简介
联网校时 获取网络时间
代码片段和文件信息
// GetNetworkTime.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “GetNetworkTime.h“
#include “GetNetworkTimeDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CGetNetworkTimeApp
BEGIN_MESSAGE_MAP(CGetNetworkTimeApp CWinApp)
//{{AFX_MSG_MAP(CGetNetworkTimeApp)
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CGetNetworkTimeApp construction
CGetNetworkTimeApp::CGetNetworkTimeApp()
{
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CGetNetworkTimeApp object
CGetNetworkTimeApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CGetNetworkTimeApp initialization
BOOL CGetNetworkTimeApp::InitInstance()
{
if (!AfxSocketInit())
{
AfxMessageBox(IDP_SOCKETS_INIT_FAILED);
return FALSE;
}
AfxEnableControlContainer();
// Standard initialization
#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
CGetNetworkTimeDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
}
else if (nResponse == IDCANCEL)
{
}
// Since the dialog has been closed return FALSE so that we exit the
// application rather than start the application‘s message pump.
return FALSE;
}
- 上一篇:祖玛游戏源代码
- 下一篇:无陀螺捷联式惯性导航系统
相关资源
- Ip代理,免费使用,不用注册,不限时
- 数字电子课程设计:限时发言时间提示
- 基于DEM的淹没区域随时间推演程序
- uppaal-v4.1
- 金融随机分析 2中文版
- BEAST计算分化时间
- 基于stm32f103的lcd按键可修改时间闹钟
- ISO11898-4-2004道路车辆—控制器局域网
- 高等代数_丘维声_上册 出版时间2010年
- ZABBIX从入门到精通v3.0.1 - 运维生存时
- 《线性代数习题集》作者:王萼芳 著
- 动态数据处理-时间序列分析
- The Statistical Analysis of Failure Time Data
- 通达信历史自定义数据打包截止时间
- 局域网时间同步(服务器+客户端)
- 科学作息时间表
- 根据经纬度和日期计算日出日落时间
- 采用时间片轮转算法的进程调度程序
- 卡尔曼滤波与维纳滤波 现代时间序列
- 音视频时间戳修复工具V1.0
- 利用Echarts实现中国地图以及有时间轴
- 时间序列预测模型
- ntp-4.2.6.tar.gz
- 一类三维混沌系统的有限时间控制
- 测反应时间Verilog程序
- 何书元应用时间序列分析答案.pdf
- 新浪微博用户数据信息--性别,地理位
- 基于时间序列聚类分析的股票数据 分
- Forecasting: principles and practice
- 2014人事工资管理系统单机版完美破解
评论
共有 条评论