上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 63 下一页
摘要: (MSDN)You can use PtrToStringChars in Vcclr.h to convert String to native wchar_t * or char *. This always returns a wide Unicode string pointer because CLR strings are internally Unicode. You can th... 阅读全文
posted @ 2010-09-06 17:21 能巴 阅读(1763) 评论(0) 推荐(0) 编辑
摘要: 1. VS project setting regards with platformFor native c++ project, there are debug | win32, debug | x64, release | win32, release | x64 configurations. Note:"debug" / "release" can be renamed while "w... 阅读全文
posted @ 2010-09-06 16:22 能巴 阅读(333) 评论(0) 推荐(0) 编辑
摘要: You can get Debugger Roadmap from MSDN to know everything about VS debugger.Exception Handling:There is a Exceptions dialog box in VS to configure how the debugger behaves with exceptions. In general,... 阅读全文
posted @ 2010-09-06 11:26 能巴 阅读(338) 评论(0) 推荐(0) 编辑
摘要: Gains:0. Dependency Management. By good dependency (dependency brings in coupling) management (interface-oriented, depend on abstraction, dependency injection, IOC, design pattern), we can restrict th... 阅读全文
posted @ 2010-09-03 18:16 能巴 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 软件开发中的三类东西组合在一起成为一个软件产品:应用程序框架(catalyst),众多类库(toolkit,ASM,OGS,AIRMAX),及两者基础上开发出的应用程序。 框架会为某一特定目的实现一个基本的、可执行的架构。框架中已经包含了应用程序从启动到运行的主要流程,流程中那些无法预先确定的步骤留给用户来实现。程序运行时,框架系统自动调用用户实现的功能组件。这时,框架系统的行为是主动的。使用普通... 阅读全文
posted @ 2010-09-03 11:21 能巴 阅读(213) 评论(0) 推荐(0) 编辑
摘要: .net 支持三种文件类型的resource:.txt  .resx  .resources system.resources 名字空间支持三种资源文件: .txt 文件,只能有字符串资源。因为不能被嵌入到 assembly 中,所以非常容易暴露,被客户修改。最大缺点是仅支持字符串资源,所以不推荐使用。 .resx 文件,由 xml 组成,能加入所有资源,包括二进制。同样不能被嵌入到 assem... 阅读全文
posted @ 2010-09-01 18:24 能巴 阅读(2142) 评论(0) 推荐(0) 编辑
摘要: ILDASM: MS提供的reflection工具,可以查看.net assembly中的信息。.Net Reflector: 可以做两件事情:reflection--查看.net assembly中的信息;disassembly: 反编译成.cs等类型代码源文件。 阅读全文
posted @ 2010-09-01 18:15 能巴 阅读(245) 评论(0) 推荐(0) 编辑
摘要: Gains:1. What will you do if you were not afraid? (如果你无所畏惧,你会怎么做?)--------"Who moved my Cheese" 2. 马上去做下一件事。3. 行动之前想得越多,害怕越多。 要三思,不要思太多-遍。4. 看下《穷爸爸,富爸爸》--平凡人要理财。5. When you move beyond your fear, you ... 阅读全文
posted @ 2010-09-01 17:35 能巴 阅读(214) 评论(0) 推荐(0) 编辑
摘要: 1. For a native C++ project in VS, once you create resource.h + res file in the project, you can manually add resources (forget about the stupid resource editor!). By default, the resources will be em... 阅读全文
posted @ 2010-08-30 15:30 能巴 阅读(268) 评论(0) 推荐(0) 编辑
摘要: 一、符号表 一副CAD图形就是一个包含有多个表的数据库,它规定了9个符号表(见下表),用户不能再增加新的符号表 符号表名 符号表功能 AcDbViewTable (视图表) 适用于 AcDbViewTableRecord 类,表示在数据库中存储的视图。 视图与CAD的"VIEW"命令相关联 AcDbViewportTable(视口表) 适用于 AcDbViewportTableRecord 类,... 阅读全文
posted @ 2010-08-26 17:36 能巴 阅读(1728) 评论(0) 推荐(1) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 63 下一页