上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 33 下一页
  2011年3月20日
摘要: 在事件响应函数OnEnd中添加如下代码段:Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->functionOnEnd()stringszDLL,szReg,szCmd;beginszReg=WINSYSDIR^"regsvr32.exe";szDLL=TARGETDIR^"MYDLL.dll";//如果是MSI工程,可以用INSTALLDIR代替TARGETDIRszCmd="/s\" 阅读全文
posted @ 2011-03-20 20:03 一路前行 阅读(480) 评论(0) 推荐(0) 编辑
摘要: 代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->//===========================================================================////FileName:MyCustomDialog.rul////Description:CustomDialogTemplate////Comments:WrittenbyKevinWan.WrittenAugust2010.// 阅读全文
posted @ 2011-03-20 19:43 一路前行 阅读(1231) 评论(1) 推荐(1) 编辑
  2011年3月12日
摘要: waitfordelay'00:00:30'--(hh:mm:ss) 阅读全文
posted @ 2011-03-12 16:14 一路前行 阅读(617) 评论(0) 推荐(0) 编辑
摘要: staticclassProgram{///<summary>///Themainentrypointfortheapplication.///</summary>[STAThread]staticvoidMain(){//异常捕捉Application.SetUnhandledExceptionMode(UnhandledExceptionMode.CatchException);Application.ThreadException+=newThreadExceptionEventHandler(UIThreadException);AppDomain.Curren 阅读全文
posted @ 2011-03-12 15:29 一路前行 阅读(339) 评论(0) 推荐(0) 编辑
  2011年3月10日
摘要: 一 Agile Tools1 XAntAnt:http://www.junit.org/index.htmNAnt:http://nant.sourceforge.net/2 XUnitJUnit:http://www.junit.org/index.htmCppUnit:http://sourceforge.net/projects/cppunitNUnit:http://www.nunit.org/3 CruiseControl.XXCruiseControl:http://cruisecontrol.sourceforge.net/CruiseControl.NET:http://sou 阅读全文
posted @ 2011-03-10 11:40 一路前行 阅读(284) 评论(0) 推荐(0) 编辑
  2011年2月16日
摘要: [代码] 阅读全文
posted @ 2011-02-16 13:18 一路前行 阅读(453) 评论(0) 推荐(1) 编辑
  2010年12月9日
摘要: [代码] 阅读全文
posted @ 2010-12-09 12:51 一路前行 阅读(208) 评论(0) 推荐(0) 编辑
  2010年11月15日
摘要: 需要自定义Function,代码如下:代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--CreateFunctionPadLeft(@OriginalStringvarchar(20),@PaddingCharchar(1),@TotalLength... 阅读全文
posted @ 2010-11-15 15:06 一路前行 阅读(1174) 评论(0) 推荐(0) 编辑
  2010年11月8日
摘要: [代码] 阅读全文
posted @ 2010-11-08 21:00 一路前行 阅读(501) 评论(0) 推荐(1) 编辑
摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->functionpadLeft(str,lenght){if(str.length>=lenght)returnstr;elsereturnpadLeft("0"+str,lenght);}functionpadRight(str,lenght){if(str.length>=lenght)returnstr;elsereturnpadRight(str+&q 阅读全文
posted @ 2010-11-08 17:52 一路前行 阅读(371) 评论(0) 推荐(1) 编辑
  2010年11月3日
摘要: 寄存器 所要了解的是8个32位的寄存器,分别是eax,ebx,ecx,edx,esp,ebp,edi,esi eax-edx这四个是通用寄存器,虽然各个都有各自的用途,不过你可以用它们来做任何事!是32位的,自然有低位和高位,我们又可以通过ax,bx,cx,dx来访问其低十六位,但高十六位是无法访问的!比如eax=12345678h,那么低十六位ax=5678h!而十六位的自然也有低位和高位,... 阅读全文
posted @ 2010-11-03 23:13 一路前行 阅读(298) 评论(0) 推荐(0) 编辑
  2010年10月19日
摘要: Thread.IsBackground = true把线程设置成后台线程就可随程序的关闭而关闭 阅读全文
posted @ 2010-10-19 19:16 一路前行 阅读(1107) 评论(0) 推荐(0) 编辑
  2010年10月18日
摘要: - 输出文件 -/out:<file> 输出文件名(默认值: 包含主类的文件或第一个文件的基名称)/target:exe 生成控制台可执行文件(默认) (缩写: /t:exe)/target:winexe 生成 Windows 可执行文件 (缩写: /t:winexe)/target:library 生成库 (缩写: /t:library)/target:module 生成能添加到其他... 阅读全文
posted @ 2010-10-18 11:16 一路前行 阅读(452) 评论(1) 推荐(1) 编辑
  2010年10月17日
摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--CWinThread*pFindCardWorker=AfxBeginThread(DAssistantProc,NULL);UINTDAssistantProc(LPVOIDpParam){//..... 阅读全文
posted @ 2010-10-17 21:03 一路前行 阅读(656) 评论(0) 推荐(0) 编辑
摘要: [代码] 阅读全文
posted @ 2010-10-17 20:56 一路前行 阅读(744) 评论(0) 推荐(1) 编辑
摘要: Html中ActiveX控件引用如下:代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--<objectid=axACCard1style="LEFT:0px;WIDTH:164px;TOP:0px;HEIGHT:23px"codeBase=ht... 阅读全文
posted @ 2010-10-17 20:54 一路前行 阅读(888) 评论(0) 推荐(1) 编辑
摘要: 首先MFC中支持自定义事件,但对于事件控件,VC6.0却没有图形界面的添加和维护操作。所以我们只能代码中进行手动添加,下面将以AXICCardCtl.h和AXICCardCtl.cpp为例进行添加自定义事件,如下分为四个步骤:第一步:定义消息(AXICCardCtl.h)[代码]第二步:建立消息映射(AXICCardCtl.h)[代码]第三步:关联消息处理函数(AXICCardCtl.cpp)[代... 阅读全文
posted @ 2010-10-17 16:18 一路前行 阅读(406) 评论(0) 推荐(1) 编辑
摘要: atof(将字符串转换成浮点型数)相关函数atoi,atol,strtod,strtol,strtoul表头文件#include<stdlib.h>定义函数doubleatof(constchar*nptr);函数说明atof()会扫描参数nptr字符串,跳过前面的空格字符,直到遇上数字或正负符号才开始做转换,而再遇到非数字或字符串结束时('')才结束转换,并将结果返回。参数nptr字... 阅读全文
posted @ 2010-10-17 13:34 一路前行 阅读(1016) 评论(0) 推荐(0) 编辑
  2010年9月24日
摘要: 方法一:char *p;CString str="hello";p=str.GetBuffer(str.GetLength());str.ReleaseBuffer();方法二:CString str="hello";char ch[20];memcpy(ch,str,str.GetLength());方法三:char *ch;CString str="hello";ch=(LPSTR)(LPCT... 阅读全文
posted @ 2010-09-24 20:47 一路前行 阅读(1649) 评论(0) 推荐(1) 编辑
摘要: 方法1:用c/c++自身的字符串数组#include <string.h>void test(){ // 用法 1 - 1 char szInfo[100] = {0}; strcpy(szInfo, "hello, world\r\n"); printf(szInfo); // 用法 1- 2 char *pInfo = "hello, guys\r\n"; printf(pInf... 阅读全文
posted @ 2010-09-24 13:32 一路前行 阅读(272) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 33 下一页