
C# WinForm
文章平均质量分 79
johnysq
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
.c# winform Excel模板做报表(完美)
using Excel = Microsoft.Office.Interop.Excel;//需要引用命名空间 private void PrintViewExcel{ Excel.Application m_objExcel = null; Excel._Workbook m_objBook = null; E原创 2012-10-02 11:45:33 · 3494 阅读 · 0 评论 -
c# 操作批处理
需要 using System.Diagnostics; using System.IO;一。方法1public static string RunCommand(string command) { //實例一個Process類,啟動一個獨立進程 Process p = new Process();原创 2013-01-19 08:06:11 · 685 阅读 · 0 评论