资源简介
C++编写,实现软件版本与服务器端版本库比较,如果有新版本则自动更新。压缩包包括服务器端示例。
代码片段和文件信息
// MyUpdate.cpp : Defines the class behaviors for the application.
// 功能: 外部升级程序(如果有需要内部升级程序的请通知我我会及时发布的)
// 作者:依星(airen3339@163.com)
// 日期:2005.9
//////////////////////////////////////////////////////////////////////
#include “stdafx.h“
#include “MyUpdate.h“
#include “MyUpdateDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CMyUpdateApp
BEGIN_MESSAGE_MAP(CMyUpdateApp CWinApp)
//{{AFX_MSG_MAP(CMyUpdateApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CMyUpdateApp construction
CMyUpdateApp::CMyUpdateApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CMyUpdateApp object
CMyUpdateApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CMyUpdateApp initialization
BOOL CMyUpdateApp::InitInstance()
{
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
CMyUpdateDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 153480 1998-05-13 00:00 update\MyUpdate\Lib\WININET.LIB
文件 43982 1998-05-13 00:00 update\MyUpdate\Lib\WINMM.LIB
文件 5912 2005-09-24 10:13 update\MyUpdate\MyFun\MyFun.cpp
文件 749 2005-09-24 10:36 update\MyUpdate\MyFun\MyFun.h
文件 167936 2005-09-24 11:17 update\MyUpdate\Release\MyUpdate.exe
文件 174908 2005-09-24 11:23 update\MyUpdate\MyUpdate.aps
文件 136830 2005-09-24 09:18 update\MyUpdate\res\left.bmp
文件 3638 2005-09-24 08:27 update\MyUpdate\res\Update.ico
文件 400 2005-09-24 08:23 update\MyUpdate\res\MyUpdate.rc2
文件 1171 2005-09-24 13:36 update\MyUpdate\MyUpdate.clw
文件 2283 2005-09-24 10:36 update\MyUpdate\MyUpdate.cpp
文件 7389 2005-09-24 11:17 update\MyUpdate\MyUpdateDlg.cpp
文件 210 2005-09-24 08:23 update\MyUpdate\StdAfx.cpp
文件 4811 2005-09-24 09:38 update\MyUpdate\MyUpdate.dsp
文件 539 2005-09-24 08:23 update\MyUpdate\MyUpdate.dsw
文件 1538 2005-09-24 10:35 update\MyUpdate\MyUpdate.h
文件 1760 2005-09-24 11:04 update\MyUpdate\MyUpdateDlg.h
文件 915 2005-09-24 11:02 update\MyUpdate\Resource.h
文件 1054 2005-09-24 08:23 update\MyUpdate\StdAfx.h
文件 58368 2005-09-24 13:36 update\MyUpdate\MyUpdate.ncb
文件 55808 2005-09-24 13:36 update\MyUpdate\MyUpdate.opt
文件 1135 2005-09-24 11:17 update\MyUpdate\MyUpdate.plg
文件 5444 2005-09-24 11:23 update\MyUpdate\MyUpdate.rc
文件 666 2005-09-24 13:29 update\update\index.asp
文件 652 2005-09-24 13:29 update\update\index.jsp
文件 585 2005-09-24 13:30 update\update\index.php
文件 283 2005-09-24 13:51 update\update\说明.txt
文件 464 2005-09-24 11:22 update\说明.txt
目录 0 2006-04-29 20:42 update\MyUpdate\Lib
目录 0 2006-04-29 20:42 update\MyUpdate\MyFun
............此处省略8个文件信息
- 上一篇:nRF24LE1实验例程
- 下一篇:RSA加密算法c语言
评论
共有 条评论