C# 開檔對話盒(OpenFileDialog) / 存檔對話盒(SaveFileDialog)
C# 開檔對話盒(OpenFileDialog) / 存檔對話盒(SaveFileDialog) 開檔對話盒: &nb…
C# 開檔對話盒(OpenFileDialog) / 存檔對話盒(SaveFileDialog) 開檔對話盒: &nb…
C# 檔案是否存在,資料夾是否存在 資料來源:http://toimy.blogspot.tw/2010/03/c_15.html 判斷目錄是否存在 //判斷C…
C#程式重新開機(程式重啟,非系統重啟) 資料來源: https://harde.org/blog/2009/08/c%E7%A8%8B%E5%B…
C# 文字檔一行一行讀取 資料來源:https://msdn.microsoft.com/zh-tw/library/94223t4d…. int …
C# 檔案操作(複製、刪除和移動檔案) 資料來源:https://msdn.microsoft.com/zh-tw/library/cc14899…
C# 使用Process來達到呼叫、監聽、關閉外部程式等功能 資料來源: http://fecbob.pixnet.net/blog/post/38088805…
C# 檔案MD5計算 資料來源: http://www.dotblogs.com.tw/junegoat/archive/2012/08/21/c…
VS2010 C# 壓縮單一檔案(使用.NET 4 內建元件) 資料來源: https://msdn.microsoft.com/zh-tw/li…
VS2010 C# 壓縮/解壓縮目錄的方法 資料來源: https://dotnetzip.codeplex.com/ (外部元件) …
讓C#程式以系統管理員身分執行(UAC)[Windows 權限] 資料來源:http://www.dotblogs.com.tw/as15774/…
C# 檔案的加密/解密(DES) 資料來源:http://www.dotblogs.com.tw/yc421206/archive/2012/04…
C# [Winform][User Control] 自訂控制項的顯示屬性 資料來源: http://www.dotblogs.com.tw/yc…
C# 多國語系程式設計介紹 01. C#的語系檔附檔名是RESX,檔案格式內容為XML的文字格式(…
C# 透過呼叫外部程式(rundll32.exe)來達到 啟動控制台 & 清除上網紀錄(cookie) 01. 啟動控制台 String …
C# WinForm關閉應用程式本身的方法 01. this.Close();//單一…
C# 取得目前時間轉字串 using System; using System.Collections.Generic; using System…
C# 使用第三方函式庫來存取JSON using System; using System.Collections.Generic; using …
C# XML(1) 建立/修改/查詢 using System; using System.Collections.Gene…
C++ DLL設計 & C# 呼叫使用(可以要C++動態配置記憶體) //C++ typedef struct _CardReaderSt…
C# MessageBox使用基本語法 資料來源: https://docs.microsoft.com/zh-tw/dotnet/ap…
C# 元件移動座標 this.AutoScroll = false;// 迫使將畫面移至最上面,解決C#只有相對座標(C#的捲軸BUG) &nbs…
C# 元件隱藏/顯示 this.元件.Visible = false; this.元件.Visible = true; …
C# DatePicker 抓取與設定 DateTime Date1 = new DateTime(2015…
C# CheckBox 抓取與設定 this.CheckBox元件.Checked = false; &nbs…
C# ComboBox 抓取與設定 01.建立選單內容 System.Object[] ItemObject = new System.Object…
C# 設定元件致能(Enabled) this.元件.Enabled=true;//false
C# 用程式指定表單(FORM)大小 this.Width = 695; this.Height…
C# 多WinForm指定啟始(開始)頁面(Form) 方法:開啟Program.cs修改Application.Run(new FormName…
C# MessageBox用法介紹 單文顯示文字: MessageBox.Show(“顯示文字內容̶…
C# 字串反轉 和 字串的子字串(Mid / Substring) 字串反轉: public static string StrReverse(s…