摘要:
cx_freeze(4.2.1) + python(3.1.2)打包后本机运行正常,在另一台安装了Visual Studio 2008的机器也运行正常,但在一台未安装Visual Studio的机器报错:“由于应用程序配置不正确,应用程序未能启动。”经过Google和测试,发现安装Microsoft Visual C++ 2008 SP1 Redistributable P... 阅读全文
摘要:
使用该类时,要注意, 1、InitInstance 中一定要先调用 CWinAppEx::GetShellManager(); 2、创建控件变量,类型为 CMFCEditBrowseCtrl; 3、调用 CMFCEditBrowseCtrl::EnableFileBrowseButton或CMFCEditBrowseCtrl::EnableFolderBrowseButton 设置浏览模式。 阅读全文
摘要:
在 InitInstance 中执行下列代码,即可显示为正常字体: LOGFONT logfont = {0}; :: SystemParametersInfo(SPI_GETICONTITLELOGFONT, sizeof(LOGFONT), &logfont, 0); afxGlobalData.SetMenuFont(&logfont,true); ... 阅读全文
摘要:
日历时:距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 * timer); ... 阅读全文
摘要:
执行命令:perl -p -i -e "s/sysread/read/g" test.txt 时,报错:can't do inplace edit without bakcup。在网上搜索了一下,发现应该在 -i 后加一个扩展名,如 -i.old,此时就会生成 test.txt.old备份文件,而源文件被直接修改。 阅读全文
摘要:
复制构造函数(copy constructor):一种特殊的构造函数,具有单个形参,该形参(常用const修饰)是对该类类型的引用。当定义一个新对象并用一个同类型的对象对它进行初始化时,将显式使用复制构造函数。当将该类型的对象传递给函数或从函数返回该类型的对象时,将隐式使用复制构造函数。 析构函数(destructor):构造函数的互补。当对象超出作用域或动态分配的对象被删除时,将自动应用析构函... 阅读全文
摘要:
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 store... 阅读全文
摘要:
Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->int sqlite3_prepare( sqlite3 *db, /* Database handle */ const char *zSql, /* SQ... 阅读全文