上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 63 下一页
摘要: 转义字符不合法的XML字符必须被替换为相应的实体。 如果在XML文档中使用类似"<" 的字符, 那么解析器将会出现错误,因为解析器会认为这是一个新元素的开始。所以不应该象下面那样书写代码: <message>if salary < 1000 then</message> 为了避免出现这种情况,必须将字符"<" 转换成实体,象下面这样: <messag... 阅读全文
posted @ 2009-09-01 15:39 能巴 阅读(274) 评论(0) 推荐(0)
摘要: The Microsoft Windows SDK is a set of tools, code samples, documentation, compilers, headers, and libraries that developers can use to create applications that run on Microsoft Windows operating syste... 阅读全文
posted @ 2009-09-01 14:12 能巴 阅读(255) 评论(0) 推荐(0)
摘要: February 9th, 2005, 11:07 AM http://www.codeguru.com/forum/showthread.php?t=327982C++ Design Pattern: What is a Design Pattern? Q: What is a Design Pattern?A: Design Patterns represent solutions to pr... 阅读全文
posted @ 2009-08-18 10:02 能巴 阅读(399) 评论(0) 推荐(0)
摘要: FROM MSDN:Using Multiple Resource Files in the Same ProjectVisual C++ and the Resource Compiler support multiple .RC files in the same project through #include's of one .RC file within another.It does... 阅读全文
posted @ 2009-08-17 16:44 能巴 阅读(229) 评论(0) 推荐(0)
摘要: 爱稀奇(www.ixiqi.com):  里与大家分享世界上每天出现的各种新鲜有趣的玩意儿,在生活在钢筋水泥森林,多久没有抬头看看头顶的蓝天?  希望你在爱稀奇,发现不一样的海阔天空    多一度(www.duoyidu.com):创意设计  时尚创意网站,很多好玩的新奇的设计,缺少灵感可以看一看哦    易卡网(www.1ka.me):一个密码登录任意网站  优秀的互联网通行证网站,一个密码登录... 阅读全文
posted @ 2009-07-25 19:04 能巴 阅读(421) 评论(0) 推荐(0)
摘要: As we all know, dll's entry point is DllMain(). Now consider when to initialize all global and static data, the time happens earlier than calling DllMain()!You can easily know this by debugging.In CRT... 阅读全文
posted @ 2009-07-10 18:15 能巴 阅读(235) 评论(0) 推荐(0)
摘要: The Shutdown command is not available on the Start menu to shut down and restart, when you are using Remote Desktop. To shut down a remote computer when you are using Remote Desktop, press CTRL+ALT+EN... 阅读全文
posted @ 2009-07-07 10:41 能巴 阅读(273) 评论(0) 推荐(0)
摘要: 转载自:http://blogs.msdn.com/mgrier/archive/2005/06/21/431378.aspx 另一篇:http://www.osronline.com/ddkx/ddtools/dv_8pkj.htm The NT DLL Loader: DLL callouts (DllMain) - DLL_PROCESS_ATTACH deadlocks ... 阅读全文
posted @ 2009-07-05 22:02 能巴 阅读(960) 评论(0) 推荐(0)
摘要: 一般在C或C++中(VC当然是C++的一种),DLL的模块入口点有个默认函数,是_DllMainCRTStartup(),它的原形与 DllMain()一样,链接器在链接的时候就是以它作为模块的入口函数,那样它就可以进行一些模块全局变量等的初始化操作,当然用户也可对模块入口地址 进行自行设定,不过不建议这么做!当链接器在链接时,它会自动查找当前DLL模块工程中的各个.obj文件,如果找到有DllM... 阅读全文
posted @ 2009-07-05 20:49 能巴 阅读(3502) 评论(0) 推荐(0)
摘要: 创建纯资源 DLL 纯资源 DLL 是仅包含资源(如图标、位图、字符串和对话框)的 DLL。使用纯资源 DLL 是在多个程序之间共享同一组资源的好方法。提供其资源被针对多种语言进行本地化的应用程序也是一种好方法(请参见 MFC 应用程序中的本地化资源:附属 DLL)。 若要创建纯资源 DLL,请创建一个新的 Win32 DLL(非 MFC)项目,并将资源添加到此项目。 在“新建项目&... 阅读全文
posted @ 2009-07-05 12:40 能巴 阅读(574) 评论(0) 推荐(0)
上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 63 下一页