摘要:反编译工具ILSpy、LINQ学习工具LINQPad等。。。。。。
阅读全文
03 2011 档案
摘要:平时用系统自带的记事本记录日常消费,简单快捷但是缺少统计功能,不清楚每个月花费多少,于是写个程序统计一下。
阅读全文
摘要:DrawStat.ashxusing System; using System.Web; using System.Collections.Generic; using System.Drawing; using System.Drawing.Imaging; using OWC11 = Microsoft.Office.Interop.Owc11; //引用com组件:Micorsoft Office Web Components 11.0 /// /// DrawStat 的摘要说明 /// public class DrawStat : IHttpHandler { public void ProcessRequest(HttpContext context) { context.Response.ContentType = "text/plain"; int chartType = 0;
阅读全文
摘要:Microsoft.Office.Interop.Owc11.ChartSpace objchartspace = new Microsoft.Office.Interop.Owc11.ChartSpaceClass();在vs2008中正常,但在vs2010中出错:错误 14 类型“Microsoft.Office.Interop.Owc11.ChartSpaceClass”未定义构造函数错误 15 无法嵌入互操作类型“Microsoft.Office.Interop.Owc11.ChartSpaceClass”。请改用适用的接口。解决方法:选择“引用”文件夹中引入的dll:OWC11,鼠标
阅读全文
摘要:来源:http://damieng.com/blog/2009/11/06/multiple-outputs-from-t4-made-easy-revisited
My multiple outputs from t4 made easy post contained a class making it easy to produce multiple files from Visual Studio’s text templating engine (T4).
While useful it had a few issues:
Getting start/end blocks mixed up resulted in unpredictable behaviour
Files were rewritten even when content did not change
Did not play well with source control
Files not always deleted in VS
Faile
阅读全文
摘要:SQL Server 2008打开存储过程列表时提示:请参阅“对象资源管理器详细信息”了解此文件夹中的对象
阅读全文