• 大小: 17.8MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-07-30
  • 语言: C/C++
  • 标签: C++  源码  

资源简介

C++ MFC 验证码识别 源码 很实用

资源截图

代码片段和文件信息

// MyCode.cpp : 定义应用程序的类行为。
//

#include “stdafx.h“
#include “MyCode.h“
#include “MyCodeDlg.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#endif


// CMyCodeApp

BEGIN_MESSAGE_MAP(CMyCodeApp CWinApp)
ON_COMMAND(ID_HELP &CWinApp::onhelp)
END_MESSAGE_MAP()


// CMyCodeApp 构造

CMyCodeApp::CMyCodeApp()
{
// TODO: 在此处添加构造代码,
// 将所有重要的初始化放置在 InitInstance 中
}


// 唯一的一个 CMyCodeApp 对象

CMyCodeApp theApp;


// CMyCodeApp 初始化

BOOL CMyCodeApp::InitInstance()
{
// 如果一个运行在 Windows XP 上的应用程序清单指定要
// 使用 ComCtl32.dll 版本 6 或更高版本来启用可视化方式,
//则需要 InitCommonControlsEx()。否则,将无法创建窗口。
INITCOMMONCONTROLSEX InitCtrls;
InitCtrls.dwSize = sizeof(InitCtrls);
// 将它设置为包括所有要在应用程序中使用的
// 公共控件类。
InitCtrls.dwICC = ICC_WIN95_CLASSES;
InitCommonControlsEx(&InitCtrls);

CWinApp::InitInstance();

AfxEnableControlContainer();

// 标准初始化
// 如果未使用这些功能并希望减小
// 最终可执行文件的大小,则应移除下列
// 不需要的特定初始化例程
// 更改用于存储设置的注册表项
// TODO: 应适当修改该字符串,
// 例如修改为公司或组织名
SetRegistryKey(_T(“应用程序向导生成的本地应用程序“));

CMyCodeDlg dlg;
m_pMainWnd = &dlg;
INT_PTR nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: 在此放置处理何时用
//  “确定”来关闭对话框的代码
}
else if (nResponse == IDCANCEL)
{
// TODO: 在此放置处理何时用
//  “取消”来关闭对话框的代码
}

// 由于对话框已关闭,所以将返回 FALSE 以便退出应用程序,
//  而不是启动应用程序的消息泵。
return FALSE;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       7440  2011-11-20 20:27  MyCode\Debug\BuildLog.htm

     文件       3228  2012-04-21 12:56  MyCode\Debug\cl.command.1.tlog

     文件      42946  2012-04-21 12:56  MyCode\Debug\CL.read.1.tlog

     文件       1464  2012-04-21 12:56  MyCode\Debug\CL.write.1.tlog

     文件          2  2012-04-21 12:56  MyCode\Debug\link-cvtres.read.1.tlog

     文件          2  2012-04-21 12:56  MyCode\Debug\link-cvtres.write.1.tlog

     文件       1594  2012-04-21 12:56  MyCode\Debug\link.command.1.tlog

     文件       4576  2012-04-21 12:56  MyCode\Debug\link.read.1.tlog

     文件        886  2012-04-21 12:56  MyCode\Debug\link.write.1.tlog

     文件        620  2012-04-21 12:56  MyCode\Debug\mt.command.1.tlog

     文件         67  2011-11-20 20:27  MyCode\Debug\mt.dep

     文件        580  2012-04-21 12:56  MyCode\Debug\mt.read.1.tlog

     文件        370  2012-04-21 12:56  MyCode\Debug\mt.write.1.tlog

     文件        667  2012-04-21 12:56  MyCode\Debug\MyCode.exe.embed.manifest

     文件        732  2012-04-21 12:56  MyCode\Debug\MyCode.exe.embed.manifest.res

     文件        381  2012-04-21 12:56  MyCode\Debug\MyCode.exe.intermediate.manifest

     文件         44  2012-04-21 12:56  MyCode\Debug\MyCode.lastbuildstate

     文件       3948  2012-04-21 12:56  MyCode\Debug\MyCode.log

     文件      26927  2012-04-21 12:56  MyCode\Debug\MyCode.obj

     文件   20054016  2012-04-21 12:56  MyCode\Debug\MyCode.pch

     文件      22992  2012-04-21 12:56  MyCode\Debug\MyCode.res

     文件     203072  2012-04-21 12:56  MyCode\Debug\MyCodeDlg.obj

     文件        202  2012-04-21 12:56  MyCode\Debug\MyCode_manifest.rc

     文件      20916  2012-04-21 12:56  MyCode\Debug\MyDialog.obj

     文件     198031  2012-04-21 12:56  MyCode\Debug\MyFunction.obj

     文件        864  2012-04-21 12:56  MyCode\Debug\rc.command.1.tlog

     文件       2748  2012-04-21 12:56  MyCode\Debug\rc.read.1.tlog

     文件        350  2012-04-21 12:56  MyCode\Debug\rc.write.1.tlog

     文件     538380  2012-04-21 12:56  MyCode\Debug\stdafx.obj

     文件    1346560  2012-04-21 12:56  MyCode\Debug\vc100.idb

............此处省略73个文件信息

评论

共有 条评论