资源简介
状态指示灯(VC++6.0源代码).rar
代码片段和文件信息
// Light.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “Light.h“
#include “LightDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CLightApp
BEGIN_MESSAGE_MAP(CLightApp CWinApp)
//{{AFX_MSG_MAP(CLightApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CLightApp construction
CLightApp::CLightApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CLightApp object
CLightApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CLightApp initialization
BOOL CLightApp::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
CLightDlg 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 2012-11-27 22:20 指示灯\
目录 0 2012-11-27 22:20 指示灯\Debug\
文件 6452 2012-11-27 22:20 指示灯\Debug\BuildLog.htm
文件 32256 2012-11-27 22:20 指示灯\Debug\Light.exe
文件 920 2012-11-27 21:21 指示灯\Debug\Light.exe.em
文件 984 2012-11-27 21:21 指示灯\Debug\Light.exe.em
文件 861 2012-11-27 22:20 指示灯\Debug\Light.exe.intermediate.manifest
文件 181896 2012-11-27 22:20 指示灯\Debug\Light.ilk
文件 104133 2012-11-27 22:20 指示灯\Debug\Light.obj
文件 25231360 2012-11-27 21:21 指示灯\Debug\Light.pch
文件 3206144 2012-11-27 22:20 指示灯\Debug\Light.pdb
文件 2276 2012-11-27 22:20 指示灯\Debug\Light.res
文件 114035 2012-11-27 22:20 指示灯\Debug\LightDlg.obj
文件 465339 2012-11-27 21:21 指示灯\Debug\StdAfx.obj
文件 65 2012-11-27 22:20 指示灯\Debug\mt.dep
文件 214016 2011-11-17 01:47 指示灯\Debug\vc60.idb
文件 364544 2011-11-17 01:47 指示灯\Debug\vc60.pdb
文件 912384 2012-11-27 22:20 指示灯\Debug\vc90.idb
文件 2002944 2012-11-27 22:20 指示灯\Debug\vc90.pdb
文件 36880 2012-11-27 22:20 指示灯\Light.aps
文件 911 2011-11-17 01:45 指示灯\Light.clw
文件 2049 2011-11-17 00:13 指示灯\Light.cpp
文件 4141 2011-11-17 00:13 指示灯\Light.dsp
文件 535 2011-11-17 00:13 指示灯\Light.dsw
文件 1313 2011-11-17 00:13 指示灯\Light.h
文件 23120896 2012-11-28 10:50 指示灯\Light.ncb
文件 48640 2011-11-17 01:47 指示灯\Light.opt
文件 244 2011-11-17 01:47 指示灯\Light.plg
文件 4736 2012-11-27 22:20 指示灯\Light.rc
文件 875 2012-11-27 21:19 指示灯\Light.sln
文件 22528 2012-11-28 10:50 指示灯\Light.suo
............此处省略11个文件信息
评论
共有 条评论