文章分类 -  C#篇

使用owc绘制折线图
摘要:注意添加引用Microsoft.Office.Interop.Owc11;//添加Office组件引用void drawColumn3DOne(string[] xValue, string [] yValue, string chartTilte, string xTitle, string yTitle) { try { ii++; string strXdata = String.Empty... 阅读全文
posted @ 2010-04-28 20:24 linder 阅读(354) 评论(0) 推荐(0)
C#中调用可执行程序
摘要:主要使用Process类基本练习.调用QQ程序 //调用带参数的exe public bool StartProcess(string filename, string[] args) { try { string s = ""; foreach (string arg in args) { s = s + arg + " "; } s = s.Trim(); Process myprocess ... 阅读全文
posted @ 2010-04-28 20:21 linder 阅读(896) 评论(0) 推荐(0)