Time of Update: 2018-12-04
C#批量重新命名檔案代碼的實現網站設計的時候.很多前台美工用PHOTOSHOP匯出的圖片名字是批量有規律的比如"百度.PSD"PHOTOSHOP源檔案.在 PHOTOSHOP中匯出所有切片檔案為網頁操作之後.自動會產生"百度_01.GIF,""百度_02.GIF,"...一直到"百度_99.GIF",按照一般的訪問網站設計要求.盡量會要求所有的圖片名稱是英文字母的.所以要批量替換掉檔案夾中的檔案名稱中的"百度"兩個字成為英文字母"BAIDU'的要求.例如選擇目錄下有Main_11.gif,Mai
Time of Update: 2018-12-04
public bool IsCorrenctIP(string ip) { string
Time of Update: 2018-12-04
using System;using System.Drawing;using System.Collections;using System.ComponentModel;using System.Windows.Forms;//查詢網路上的電腦IP和使用者需要引用using System.Data;using System.IO;using System.Net;using System.Net.Sockets;using
Time of Update: 2018-12-04
//參考別人的代碼得來的//官方參考資料http://msdn.microsoft.com/library/chs/default.asp?url=/library/CHS/cpguide/html/cpconmutex.asp//引入命名空間using System.Text;using System.Threading;/// <summary> /// 應用程式的主進入點。 /// </summary> [STAThread] static void
Time of Update: 2018-12-04
傳送表單主要代碼//引用代碼using System;using System.Drawing;using System.Collections;using System.ComponentModel;using System.Windows.Forms;using System.Net;using System.Net.Sockets;using System.IO;using System.Text;//按鈕事件代碼//取得預發送的檔案名稱 string
Time of Update: 2018-12-04
原文網址:http://www.cnblogs.com/koenemy/articles/1239025.html測試結果:未成功修正進度:修正中最後結束修正日期:等待建議參考網址:1.http://support.ceci.com.tw/directory/worldwide/zh-tw/faq/1910.htm#162.http://msdn.microsoft.com/en-us/aa214937(SQL.80).aspx 2009-12-25更新開發環境:繁體版本WINDOWSXP+繁體
Time of Update: 2018-12-04
//在項目引用裡添加上對Microsoft Word 11.0 object library的引用private void button1_Click(object sender, System.EventArgs e) { //調用開啟檔案對話方塊擷取要開啟的檔案WORD檔案,RTF檔案,文字檔路徑名稱 OpenFileDialog opd = new OpenFileDialog(); opd.InitialDirectory = "c://"; opd.Filter =
Time of Update: 2018-12-04
//添加應用程式集區空間引用using System.DirectoryServices;using System.Text; using System.Text.RegularExpressions; using System.Diagnostics; using System.Management; private void button2_Click(object sender, System.EventArgs
Time of Update: 2018-12-04
因為覺得代碼設計和重用的功能在JAVA和C#中能力十分強大,能省去資料庫操作和頁面編寫的好多重複的工作,所以向CSDN申請能拜讀這本書來瞭解C++中是如何複用代碼的。在此要非常感謝能收到CSDN免費郵寄給我的《C++代碼設計與重用》一書,同時也非常感謝作者的努力工作和譯者的精心翻譯。 拿到書的時候是7月,翻開首頁發現這本書就是7月份剛出版的,非常驚訝了一下,因為向來買書就要買最新出版的是我的習慣愛好之一。
Time of Update: 2018-12-04
private void button3_Click(object sender, System.EventArgs e) { if(textBox3.Text=="") { MessageBox.Show("必須填寫當前的查詢的QQ號碼!","錯誤提示!"); textBox3.Focus(); return; } else { string strQQ=textBox3.Text.Trim(); string
Time of Update: 2018-12-04
/// <summary> /// 讀取Excel表格式資料方法三,返回資料集DataSet /// </summary> /// <param name="str">所要開啟的檔案地址</param> /// <returns></returns> private DataSet GetExcelDataSet1(string
Time of Update: 2018-12-04
資料同步對比步驟:1.將兩資料庫中對應的資料表分別產生XML檔案 /// <summary> /// 將一個DataTable以xml方式存入指定的檔案中 /// </summary> /// <param name="dt"></param> /// <param name="filePath"></param> public void
Time of Update: 2018-12-04
/// <summary> /// Person 的摘要說明。 /// </summary> public class Person { //初始化個人資訊類 private string name; //使用者姓名 private string sex; //使用者性別 private int age; //使用者年齡 private string address; //詳細地址 private string
Time of Update: 2018-12-04
使用C++有些時間了,但對於C++中的類型轉換運算子瞭解的並不深,之前用static_cast做一些簡單的C++內建類型之間的轉化,其實可以用(typename)來替換的,用dynamic_cast做一些類對象之間的轉換,對於reinterpret_cast和const_cast,用到不是很多,偶爾看到一本書中有對這四種類型轉換運算子的論述,講解的比較詳細。具體歸納如下:reinterpret_cast該強制類型轉換操作符將一個類型的指標轉換為另一個類型的指標.這種轉換不用修改指標變數值存放格式
Time of Update: 2018-12-04
//添加應用程式集區空間引用using System.DirectoryServices;using System.Text; using System.Text.RegularExpressions; using System.Diagnostics; using System.Management; private void button6_Click(object sender, System.EventArgs e) { //如果應用程式集區不存在,則會報錯系統找不到指定路徑
Time of Update: 2018-12-04
最近設計一個程式.是關於檢測公司內每台電腦配置的硬體資訊.WINDOWS作業系統啟動後就立即執行該程式,進行對當前電腦的硬體設定進行檢測.然後通過網路發送到對應的IP伺服器上去.並寫入資料庫.因此需要建立一個WINDOWS服務,就跟SQLSERVER一啟動作業系統就自動運行一樣.啟動一次作業系統就執行一次對當前電腦硬體設定的檢測.程式操作的範圍比較多.先搜集並整理一下CSDN上其他人的相關文章.非常感謝.C#建立windows服務步驟如下.1. 建立一個項目,或者從選擇當前解決方案--右鍵-添加
Time of Update: 2018-12-04
c#資料庫連接代碼///系統引用using System.Data;using System.Data.OleDb;using System.Data.SqlClient;/// <summary>/// 必需的設計器變數。/// </summary>private System.ComponentModel.Container components = null;private System.Data.DataSet
Time of Update: 2018-12-04
參考文章http://www.cnblogs.com/hanfeng/archive/2005/03/03/112246.htmlhttp://liuluanqing.blog.ccidnet.com/blog-htm-do-showone-uid-16196-type-blog-itemid-128023.html第一步:引用空間//系統預設空間添加using System;//添加對註冊表操作所需引用空間using
Time of Update: 2018-12-04
C# DataGrid設定欄位標題列寬代碼//擷取目前使用者的已聯絡客戶資料列表 private void GetMyContactUserList() { try { //建立一個SqlConnection對象 string strCon = "Initial Catalog='HMMISDATA';Server='192.168.1.251';User ID='XQF222';Password='hao123';Persist
Time of Update: 2018-12-04
C# 應用程式類中定義ACCESS資料庫檔案地址的方法方法一:資料庫訪問類using System;using System.Collections.Generic;using System.Text;using System.Data.OleDb;using System.Data;namespace Link.DataBase{ public class DBManage { System.Data.OleDb.OleDbConnection gConn =