public void DrawingChart(object[,] data, int sheetNum, ref _Workbook excelBook1, ref Worksheet excelSheet1)
- 7月 28 週六 201201:43
Export excel chart
- 7月 22 週日 201203:29
DataGridView 自動加入 TextBox Columns
System.Windows.Forms.DataGridView dgv1 = new System.Windows.Forms.DataGridView();
dgv1.ColumnCount = data[0].Length;
dgv1.ColumnCount = data[0].Length;
- 7月 22 週日 201203:03
依 Local 解析度將 Form 的背景圖片同步放大
this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- 7月 22 週日 201203:02
C# 顯示 & 字元
string str = "&&";
- 7月 22 週日 201203:00
Export excel
- 7月 22 週日 201202:38
程式範例 The Code Project
http://www.codeproject.com/
- 7月 22 週日 201202:02
鎖定只能操作目前 Form
.Show(); // 不鎖定目前 Form
.ShowDialog(); // 鎖定
.ShowDialog(); // 鎖定
- 7月 22 週日 201201:42
取得 執行中應用程式 process ID 與 關閉應用程式
public int GetProcessID(string processName, string mainWindowsTitle)
