赞助

11 2014 档案

摘要:转载:http://blog.csdn.net/goodai007/article/details/7414512头文件:ZipAndFile.h 1 //------------------------------------------------------------------------... 阅读全文
posted @ 2014-11-28 18:04 车臣 阅读(1177) 评论(0) 推荐(0) 编辑
摘要:转载:http://www.th7.cn/Program/c/201303/127343.shtml 原因是Visual C++ 2012 使用了更加安全的 run-time library routines 。新的Security CRT functions(就是那些带有“_s”后缀的函数),请参 阅读全文
posted @ 2014-11-28 11:58 车臣 阅读(261) 评论(0) 推荐(0) 编辑
摘要:转载:http://www.cnblogs.com/xufeiyang/archive/2012/05/09/2491871.html CValueFind main 阅读全文
posted @ 2014-11-20 18:13 车臣 阅读(2701) 评论(0) 推荐(0) 编辑
摘要:转载:http://www.cctry.com/thread-238862-1-1.html 阅读全文
posted @ 2014-11-18 18:25 车臣 阅读(3846) 评论(0) 推荐(0) 编辑
摘要:1.类的静态成员变量 .h 类声明入下 .cpp文件 2.定时器使用 1.SetTimer(HWND,UINT,UINT,TIMERPROC); 第一个参数设置为捕获该定时消息的窗口句柄, 第二个参数是定时器的id,第三个是以毫秒为单位的定时长度,最后一个参数设置为NULL,可以使窗口的回调函数进行 阅读全文
posted @ 2014-11-18 15:46 车臣 阅读(993) 评论(0) 推荐(0) 编辑
摘要:转载:http://www.cnblogs.com/cxjchen/p/3148582.html 转载:http://blog.csdn.net/hackbuteer1/article/details/7460019 .h文件 .cpp文件 main函数 阅读全文
posted @ 2014-11-18 14:03 车臣 阅读(190) 评论(0) 推荐(0) 编辑
摘要:1. CreateFile:这是一个多功能的函数,可打开或创建以下对象,并返回可访问的句柄:控制台,通信资源,目录(只读打开),磁盘驱动器,文件,邮槽,管道。 参照:http://www.cppblog.com/yishanhante/articles/19545.html 2. ReadFile: 阅读全文
posted @ 2014-11-13 18:31 车臣 阅读(7257) 评论(0) 推荐(0) 编辑
摘要:参照一:http://qaohao.iteye.com/blog/496237 参照二:http://hi.baidu.com/lnylvoeegzcgnrr/item/af68fd9cde40fc1a924f41f5 别人封装的TinyXML: .h文件 1 #include "xml\tinyx 阅读全文
posted @ 2014-11-10 17:47 车臣 阅读(344) 评论(0) 推荐(0) 编辑
摘要:CEncode.h文件 1 #ifndef _CENCODE_H_ 2 #define _CENCODE_H_ 3 4 #include 5 #include 6 #include 7 using namespace std; 8 9 class CEncode10 {11 public:... 阅读全文
posted @ 2014-11-07 14:08 车臣 阅读(304) 评论(0) 推荐(0) 编辑
摘要:函数名称: strrchr 函数原型:char *strrchr(const char *str, char c); 所属库: string.h 函数功能:查找一个字符c在另一个字符串str中末次出现的位置(也就是从str的右侧开始查找字符c首次出现的位置),并返回从字符串中的这个位置起,一直到字符 阅读全文
posted @ 2014-11-03 18:36 车臣 阅读(216) 评论(0) 推荐(0) 编辑
摘要:转载出自:http://www.cnblogs.com/MikeZhang/archive/2012/03/24/MySplitFunCPP.html 经常碰到字符串分割的问题,这里总结下,也方便我以后使用。 一、用strtok函数进行字符串分割 原型: char *strtok(char *str 阅读全文
posted @ 2014-11-03 16:39 车臣 阅读(273) 评论(0) 推荐(0) 编辑