上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 63 下一页
摘要: PInvokePlatform Invocation Services (PInvoke) allows managed code to call unmanaged functions that are implemented in a DLL. This tutorial shows you what you need to do to be able to call unmanaged DL... 阅读全文
posted @ 2010-04-01 17:45 能巴 阅读(293) 评论(0) 推荐(0) 编辑
摘要: As known, To generate a C++ application: seperate obj -> link together to be dll / exe. If deleting the dll / exe, it will only cause linking.It's not true for managed code. Deleting a C# dll / exe... 阅读全文
posted @ 2010-04-01 17:13 能巴 阅读(202) 评论(0) 推荐(0) 编辑
摘要: Computer graphics are graphics created using computers and, more generally, the representation and manipulation of image data by a computer.What is Shader?A shader is a small program or set of algorit... 阅读全文
posted @ 2010-04-01 15:34 能巴 阅读(262) 评论(0) 推荐(0) 编辑
摘要: I worked on a task: when user clicks a command in the application, the cursor can be that command specific. Some gains:1. Cursor can only accept cur file with only black-white color. It's really a big... 阅读全文
posted @ 2010-03-30 16:20 能巴 阅读(181) 评论(0) 推荐(0) 编辑
摘要: public class MyClass / public struct MyStruct, you see: there is no base class specification. All reference type and value type inherit from System.Object implicitly in UTS. See below:Ways to get Type... 阅读全文
posted @ 2010-03-30 13:45 能巴 阅读(190) 评论(0) 推荐(0) 编辑
摘要: How to create a custom mouse cursor?// create any bitmapBitmap b = new Bitmap( 55, 25 );Graphics g = Graphics.FromImage ( b );// do whatever you wishg.DrawString ( "myText", this.Font, Brushes.Blue, ... 阅读全文
posted @ 2010-03-29 17:53 能巴 阅读(136) 评论(0) 推荐(0) 编辑
摘要: Dependency in solutionWhen specifying a dependency relationship in solution under aproject, automatically XX.lib will be added into project setting,although it will not be stored into project file. Wi... 阅读全文
posted @ 2010-03-27 20:35 能巴 阅读(166) 评论(0) 推荐(0) 编辑
摘要: How to reuse pch file on another pc?MS doesn't officially announcethat the pch files that are produced on on pc can be reused on anyother pcs. But MS suggests you can use Incredibuild to do this.You w... 阅读全文
posted @ 2010-03-27 20:32 能巴 阅读(710) 评论(0) 推荐(0) 编辑
摘要: [原文:http://www.indiangeek.net/wp-content/uploads/Programmer%20competency%20matrix.htm][译文:http://static.icybear.net/%5BCN%5DProgrammer%20competency%20matrix.htm]Note that the knowledge for each level is cumulative; being at level n implies that you also know everything from the levels lower than n.C 阅读全文
posted @ 2010-03-27 20:17 能巴 阅读(334) 评论(0) 推荐(0) 编辑
摘要: When we submit code, sometimes unchanged files will be checked in occasionally. In some cases, it is a mistake while in some cases it's correct behavior!Mistake Check in Unchanged FilesIn most cases, ... 阅读全文
posted @ 2010-03-20 08:08 能巴 阅读(670) 评论(0) 推荐(0) 编辑
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 63 下一页