摘要: Windows API Reference for C#, VB.NET and VB6The Windows API (application programming interface) are the low level workings of Windows. It offers high performance, and lightweight code, but it is very sparsely documented for .NET programmers. This section provides a rough guide to the Win32 API from 阅读全文
posted @ 2008-03-31 09:51 greystar 阅读(390) 评论(0) 推荐(0) 编辑
摘要: 伴随着VS2008的发布,迫于开源的压力和帮助推广VS2008这两方面的原因,微软允许VS2008在debugging时,可以查看并调试Net Framework的一些源代码,前提是您的电脑必须是联网状态,而是只支持VS2008,却不支持已被广泛使用的VS2005,这两天看了一些牛人(国外的)的文章,发现国外的人就是牛,有两个家伙就开发了一个小工具(http://www.codeplex.com/NetMassDownloader),可以把.NET Framework的源码给下载下来。同时支持在VS2005上进行离线调试。园子里早有朋友已经写过类似的文章,我就不多说了,我今天在这里主要把安装的 阅读全文
posted @ 2008-03-31 09:26 greystar 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 本文在http://blog.csdn.net/greystar/archive/2008/03/13/2175958.aspx此基础上进行了扩展.当在richtextbox中我们插入一个链接时,如果链接是文件路径时(如C:/aa/bb.doc)时,/符号会丢失.这样如果我们想在些连接上单击时,获取的数据就不正确.public void InsertLink(string text, string hyperlink, int position) { if (position < 0 || position > this.Text.Length) throw new Argumen 阅读全文
posted @ 2008-03-31 09:11 greystar 阅读(330) 评论(0) 推荐(0) 编辑