上一页 1 ··· 8 9 10 11 12 13 下一页
摘要: Audio:http://www.booksshouldbefree.com/book/the-wonderful-wizard-of-ozBooks:http://www.gutenberg.org/ebooks/55?msg=welcome_stranger 阅读全文
posted @ 2014-02-18 10:06 細水長流 阅读(913) 评论(0) 推荐(0) 编辑
摘要: 转自:http://www.codeproject.com/Articles/76252/What-are-TCHAR-WCHAR-LPSTR-LPWSTR-LPCTSTR-etc解释的超详细!!! 阅读全文
posted @ 2014-02-14 17:25 細水長流 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 在C++工程中,自定义一个方法 void fgetsDemo(),在main 方法中调用,源代码如下:#include "stdafx.h"#include #include #include int _tmain(int argc, _TCHAR* argv[]){ /*Example for fgets*/ fgetsDemo(); return 0;}void fgetsDemo(){FILE *stream; char line[100]; if( fopen_s(&stream, "c:\crt_fgets.txt", "r& 阅读全文
posted @ 2014-02-13 17:33 細水長流 阅读(836) 评论(0) 推荐(0) 编辑
摘要: 1》 itoa, 将整数转换为字符串。char * itoa ( intvalue, char *buffer, intradix);它包含三个参数:value, 是要转换的数字;buffer, 是存放转换结果的字符串;radix, 是转换所用的基数,2-36。如,2:二进制,10:十进制,16:十六进制扩展:ltoa()将长整型值转换为字符串ultoa()将无符号长整型值转换为字符串Example:#include #include int _tmain(int argc, _TCHAR* argv[]){ int n; char buffer[33]; printf("E... 阅读全文
posted @ 2014-02-13 15:37 細水長流 阅读(19828) 评论(0) 推荐(0) 编辑
摘要: Converts an integer to a string.These are versions of_itoa, _i64toa, _ui64toa, _itow, _i64tow, _ui64towwith security enhancements as described inSecurity Features in the CRT.errno_t _itoa_s( int value, char *buffer, size_t sizeInCharacters, int radix );errno_t _i64toa_s( __int64 value, c... 阅读全文
posted @ 2014-02-13 14:19 細水長流 阅读(3116) 评论(0) 推荐(0) 编辑
摘要: Quote from: http://www.cplusplus.com/reference/cstdlib/itoa/functionRequired header :itoachar * itoa ( int value, char * str, int base );Convert integer to string (non-standard function)Converts an integervalueto a null-terminated string using the specifiedbaseand stores the result in the array giv. 阅读全文
posted @ 2014-02-13 13:36 細水長流 阅读(833) 评论(0) 推荐(0) 编辑
摘要: Quote from:http://software.intel.com/en-us/articles/how-to-creating-your-msi-installer-using-visual-studio-2008So you want to create an MSI installer...Step 1Create a Setup and Deployment ProjectLet's create our new project. Right click on your solution in the Solution Explorer on the right hand 阅读全文
posted @ 2014-02-12 15:53 細水長流 阅读(445) 评论(0) 推荐(0) 编辑
摘要: Step1: 用 InstallShield 创建MSI 工程 MSIDemo.ism,设置允许用户更改安装路径(如下),并增加 Component。Step 2: 编译工程,运行安装包。Step 3: Win + R, 输入 Regedit ,进入注册表。查找如下键值:64bit: HKEY_LO... 阅读全文
posted @ 2014-02-12 11:34 細水長流 阅读(1430) 评论(0) 推荐(0) 编辑
摘要: Quote from:http://flexerasoftware.force.com/articles/en_US/INFO/Q105971SynopsisThe Windows Installer service places information in the registry that has to do with my product, but I do not recognize the GUID-like keys that appear.DiscussionIn some cases (such as the location of the Uninstall string) 阅读全文
posted @ 2014-02-12 09:57 細水長流 阅读(249) 评论(0) 推荐(0) 编辑
摘要: 摘自:http://support.microsoft.com/kb/314881/zh-cn概要本文列出了 Windows Installer 工具 Msiexec.exe 的命令行选项。Msiexec.exe 是解释程序包和安装产品的程序。更多信息下面是可用于 Msiexec.exe 的命令行选项。必须至少指定一个选项才能运行 Msiexec.exe 程序。选项 参数 说明--------------------------------------------------------------... 阅读全文
posted @ 2014-02-11 18:01 細水長流 阅读(7759) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 下一页