-
大小: 39KB文件类型: .rar金币: 1下载: 0 次发布日期: 2021-06-03
- 语言: C/C++
- 标签:
资源简介
模拟船只航迹发生的VC++程序,是航船GIS管理系统的一个模块.rar
代码片段和文件信息
// Demo4.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “Demo4.h“
#include “Demo4Dlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDemo4App
BEGIN_MESSAGE_MAP(CDemo4App CWinApp)
//{{AFX_MSG_MAP(CDemo4App)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CDemo4App construction
CDemo4App::CDemo4App()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CDemo4App object
CDemo4App theApp;
/////////////////////////////////////////////////////////////////////////////
// CDemo4App initialization
BOOL CDemo4App::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
CDemo4Dlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2006-04-05 16:38 Demo4
文件 37348 2000-05-30 16:00 Demo4\Demo4.aps
文件 2884 2000-07-13 23:24 Demo4\Demo4.clw
文件 2167 2000-05-26 16:18 Demo4\Demo4.cpp
文件 4699 2000-05-30 17:31 Demo4\Demo4.dsp
文件 533 2000-05-26 15:38 Demo4\Demo4.dsw
文件 1313 2000-05-26 15:38 Demo4\Demo4.h
文件 91136 2002-03-10 02:32 Demo4\Demo4.ncb
文件 48640 2002-03-10 02:32 Demo4\Demo4.opt
文件 1753 2000-07-15 14:37 Demo4\Demo4.plg
文件 7961 2000-05-30 16:00 Demo4\Demo4.rc
文件 9668 2000-06-09 17:46 Demo4\Demo4Dlg.cpp
文件 1848 2000-05-29 17:35 Demo4\Demo4Dlg.h
文件 2082 2000-05-30 17:27 Demo4\HangJi.cpp
文件 1364 2000-05-30 17:27 Demo4\HangJi.h
文件 972 2000-05-29 16:45 Demo4\ModifyBp.cpp
文件 1204 2000-05-29 16:45 Demo4\ModifyBp.h
文件 2841 2000-06-09 17:46 Demo4\proj.cpp
文件 870 2000-06-09 17:11 Demo4\proj.h
文件 3561 2000-05-26 15:38 Demo4\ReadMe.txt
目录 0 2005-08-27 18:14 Demo4\res
文件 1078 2000-05-26 15:38 Demo4\res\Demo4.ico
文件 397 2000-05-26 15:38 Demo4\res\Demo4.rc2
文件 1674 2000-05-29 17:35 Demo4\resource.h
文件 362 2000-05-26 16:49 Demo4\StdAfx.cpp
文件 1307 2000-05-26 21:12 Demo4\StdAfx.h
文件 815 2000-05-27 11:58 Demo4\Structer.h
文件 731 2000-05-26 16:50 Demo4\UdpData.cpp
文件 1146 2000-05-26 16:50 Demo4\UdpData.h
----------- --------- ---------- ----- ----
............此处省略3个文件信息
- 上一篇:C语言图书管理课设报告
- 下一篇:c语言求硬币找零钱问题
评论
共有 条评论