C#相關知識
文章平均质量分 62
莘执
欢迎大家共同探讨技术学习
展开
-
C#上傳文件之打開文檔
//瀏覽按鈕的事件 private void btnExcelFilePath_Click(object sender, EventArgs e) { openFileDialog1.Filter = "Files(*.txt)|*.txt"; openFileDialog1.RestoreDirectory原创 2017-09-13 13:14:46 · 212 阅读 · 0 评论 -
C#以網路硬碟形式上傳文檔
需求:需要上傳網路硬碟文檔訪問權限為最大的 可使用賬號密碼訪問,若開到最大則不需要 代碼如下: //以賬號密碼訪問 //public bool UpLoadFile(string uid,string pwdstring fileNamePath, string urlPath) //不使用賬號密碼登錄 public bool UpLoadFile(string fi原创 2017-09-14 11:00:12 · 1176 阅读 · 0 评论 -
.Net中Schema的使用
1. pSqlCommand主要是要執行的SQL語句。 2. pFillSchema主要是判斷是否填入撈出數據的Schema,填入到DataTable中。 3. Schema包括鍵值/限制條件等相關資訊。 4. 由於撈取一次Schema會多一次資料庫存取的連線,所以視情況確認是否做表結構的取得, 比如需求是只做資料的呈現時,就沒必要做這動作了。 public DataTa原创 2017-09-12 08:06:48 · 403 阅读 · 0 评论 -
C#汇出Excel
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using Excel = Microsoft.Office.Interop.Excel; using System.Diagnostics; using System....原创 2018-03-13 08:56:02 · 362 阅读 · 0 评论