自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(15)
  • 收藏
  • 关注

转载 cx_freeze 打包问题

cx_freeze(4.2.1) + python(3.1.2)打包后本机运行正常,在另一台安装了Visual Studio 2008的机器也运行正常,但在一台未安装Visual Studio的机器报错:“由于应用程序配置不正确,应用程序未能启动。”经过Google和测试,发现安装Microsoft Visual C++ 2008 SP1 Redistributable P...

2010-12-03 15:05:00 163

转载 使用 CMFCEditBrowseCtrl 步骤

使用该类时,要注意, 1、InitInstance 中一定要先调用 CWinAppEx::GetShellManager(); 2、创建控件变量,类型为 CMFCEditBrowseCtrl; 3、调用 CMFCEditBrowseCtrl::EnableFileBrowseButton或CMFCEditBrowseCtrl::EnableFolderBrowseButton 设置...

2009-05-11 14:46:00 505

转载 安装 vs2008 feature pack 后,所开发的程序菜单字体丑

在 InitInstance 中执行下列代码,即可显示为正常字体: LOGFONT logfont = {0}; :: SystemParametersInfo(SPI_GETICONTITLELOGFONT, sizeof(LOGFONT), &logfont, 0); afxGlobalData.SetMenuFont(&logfont,true); ...

2009-05-08 15:26:00 101

转载 ctime相关函数

日历时:距UTC时间1970年1月1日0时0分0秒的秒数。 分解时:struct tm结构。 time_t time(time_t * timer); // 得到日历时 struct tm * gmtime(const time_t *timer); // 日历时 -> 分解时,GMT时间 struct tm * localtime(const time_t * ...

2009-04-24 14:30:00 122

转载 执行 -i 参数时,报 can't do inplace edit without bakcup

执行命令:perl -p -i -e "s/sysread/read/g" test.txt 时,报错:can't do inplace edit without bakcup。在网上搜索了一下,发现应该在 -i 后加一个扩展名,如 -i.old,此时就会生成 test.txt.old备份文件,而源文件被直接修改。转载于:https://www.cnblogs.com/deme...

2009-04-17 15:16:00 240

转载 C++ Primer(4th) Chapter13 复制控制

复制构造函数(copy constructor):一种特殊的构造函数,具有单个形参,该形参(常用const修饰)是对该类类型的引用。当定义一个新对象并用一个同类型的对象对它进行初始化时,将显式使用复制构造函数。当将该类型的对象传递给函数或从函数返回该类型的对象时,将隐式使用复制构造函数。 析构函数(destructor):构造函数的互补。当对象超出作用域或动态分配的对象被删除时,将自动...

2009-04-14 11:09:00 84

转载 Volume 1 - Chapter 3: Basic Execution Environment(Section 3.1)

This chapter describes the basic execution environment of an Intel 64 or IA-32 processor as seen by assembly-language programmers. It describes how the processor executes instructions and how it ...

2009-04-13 14:04:00 186

转载 SQLite C Interface - Compiling An SQL Statement

intsqlite3_prepare(sqlite3*db,/*Databasehandle*/constchar*zSql,/*SQLstatement,UTF-8encoded*/intnByte,/*MaximumlengthofzSqlinbytes....

2009-04-11 23:20:00 102

转载 SQLite C Interface - Opening A New Database Connection

intsqlite3_open(constchar*filename,/*Databasefilename(UTF-8)*/sqlite3**ppDb/*OUT:SQLitedbhandle*/);intsqlite3_open16(constvoid*filename,/*Databasefile...

2009-04-10 23:40:00 126

转载 An Introduction To The SQLite C/C++ Interface

原文地址:http://www.sqlite.org/cintro.html转载于:https://www.cnblogs.com/dementia/archive/2009/04/10/1433424.html

2009-04-10 22:59:00 73

转载 Boost库编译后命名方式

Boost官网的《Geting Started On Windows》(http://www.boost.org/doc/libs/1_38_0/more/getting_started/windows.html)提到了Boost库的命名,摘录如下:以 libboost_regex-vc71-mt-d-1_34.lib 为例:lib 前缀:除了Microsoft Windo...

2009-04-10 16:44:00 225

转载 C Run-Time Libraries (CRT) from msdn

This topic discusses the various .lib files that comprise the C run-time libraries as well as their associated compiler options and preprocessor directives. 本主题讨论了组成C运行时库的各种.lib文件,以及和它们相关的编译器选项...

2009-04-10 15:38:00 122

转载 VS2008 中的 depends.exe 在哪里?

答案是:没有。据说这个程序被Windows SDK组评估为质量不合格,所以下岗了。 去官网上下载,目前最新是2.2 http://www.dependencywalker.com/depends22_x86.zip转载于:https://www.cnblogs.com/dementia/archive/2009/04/10/1433076.html...

2009-04-10 14:28:00 241

转载 C++ Primer(4th) Chapter12

const成员函数 基于成员函数是否为 const,可以重载一个成员函数;同样的,基于一个指针形参是否指向const,可以重载一个函数。const 对象只能使用 const 成员;非 const 对象可以使用任一成员,但非const版本是一个更好的匹配。 每一个成员函数都有一个隐含的this指针,对于非 const 成员函数,该指针的类型是 T const *;而对于const成员函...

2009-04-09 10:48:00 70

转载 开博第一篇!纪念!

转载于:https://www.cnblogs.com/dementia/archive/2009/04/04/1429567.html

2009-04-04 20:41:00 92

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除