Time of Update: 2015-04-12
標籤:寫於2012.10: 本來這是譚浩強那本《C程式設計(第四版)》的一道課後習題,剛開始做得時候去網上找最優的演算法,結果發現奇數和雙偶數(4的倍數)的情況下演算法都比較簡單,但是單偶數(2的倍數但不是4的倍數)情況一直找不到明確的演算法,就連百度百科對這一問題的解釋也是“因非四的倍數作法相當複雜,在此只介紹四的倍數的作法”,而且連譚浩強那本書給的答案中竟然也變相的限定了n只能為奇數(題目並未說明)。在廣泛尋找資料後,發現了一篇由中南大學資訊科學與工程學院某
Time of Update: 2015-04-13
標籤: #region 過濾特殊字元 /// <summary> /// Delete special symbol /// </summary> /// <param name="str">需要過濾的字串</param> /// <returns></returns> public string DelQuota(string str) { string
Time of Update: 2015-04-05
標籤:c#產生pdf html產生pdf 使用iTextSharp 控制項using System;using System.Collections.Generic;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;using iTextSharp.text;using iTextSharp.text.pdf;using System.IO;
Time of Update: 2015-03-13
標籤:事件引發的順序對某些Windows 表單應用來說十分重要。當某些事件需要特別處理時(如重繪表單的某些部分),必須知道事件在運行時的確切引發順序。下面就應用程式和控制項的生命週期中的幾個重要階段的事件順序進行詳細討論。應用程式的啟動和關閉Form和Control類有一組和程式啟動和關閉先關的事件。當Windows Forms程式啟動時,主表單的啟動事件按以下順序引發:Control.HandleCreated
Time of Update: 2014-12-24
標籤:dotnetzip壓縮 c#壓縮檔 c#壓縮多個檔案 dotnetzip 壓縮中文亂碼 有些項目為了更好的使用者體驗,會把下載檔案做成一個壓縮的檔案,直接下載,免得去一個個的點擊下載檔案。網上有很多壓縮檔的方法,也有第三方的分裝DLL檔案,本文主要介紹DotNetZip壓縮方法。DotNetZip的DLl:http://d
Time of Update: 2014-12-11
標籤:datagridview style blog ar color os sp for on private void button3_Click(object sender,
Time of Update: 2014-11-01
標籤:os ar for sp on art bs ad ef 1、相關聲明函數,SendMessage可定義兩種格式。[DllImport("User32.DLL", CharSet =
Time of Update: 2014-06-28
標籤:des style http color strong width Configuration ErrorDescription: An error occurred during the processing of a configuration file required to
Time of Update: 2014-06-13
標籤:des datagridview style class blog code using System.Collections.Generic;using System.ComponentModel;using System.Diagnostics;using
Time of Update: 2014-05-09
標籤:winform style blog class code java WebServices(http://www.webxml.com.cn/WebServices/WeatherWebService.asmx)來實現天氣預報,該天氣預報 Web
Time of Update: 2014-11-05
標籤:style blog io color ar 使用 java sp div 遇到了這個問題,很久沒找到答案,後來使用了萬能的google,貌似也沒找到答案.詳細描述下:通過使用
Time of Update: 2014-07-01
標籤:style blog http color 2014 os 原文:挖一挖C#中那些我們不常用的東西之系列(5)——FlagAttribute 說到FlagsAttribute,源自前幾天看到了一小段代碼,大概意思就是根據航班政策來返回哪些配送方式是否可用,根據這些是否可用來隱藏或者開啟介
Time of Update: 2014-06-25
標籤:style class blog code http tar 原文:C#操作Word文檔(加密、解密、對應書籤插入分頁符)最近做一個項目,客戶要求對已經產生好的RTF檔案中的內容進行分頁顯示,由於之前對這方面沒有什麼瞭解,後來在網上也找了相關的資料,並結合自己在MSDN上面的尋找,後來總算
Time of Update: 2014-07-18
標籤:des style blog http color os using System;using System.Drawing;using System.Data;using GemBox.Spreadsheet;namespace Samples{///
Time of Update: 2018-12-08
複製代碼 代碼如下:using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; ///
Time of Update: 2018-12-08
此時希望使用者不能通過鍵盤alt+F4來結束程式及通過Win的按鍵組合對視窗進行操作。我在網上搜尋了一下,採用全域鍵盤鉤子的方法可以做到屏蔽使用者對鍵盤的操作。。以下為相關代碼,用到了Form1_load事件和Form1_FormClosing事件: 複製代碼 代碼如下:using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using
Time of Update: 2018-12-08
原理我像大家都很清楚,這裡只說.NET(c#實現)。伺服器每次啟動或者重啟,都是沒登陸的。那意味著啟動項裡不只能做,我就考慮到使用Windows服務。Windows服務在系統載入時候就會啟動所有服務,把程式寫進裡面應該沒錯了。 需要重啟,那就要一個時間來效驗,寫法都有很多。我這裡採用ini來存放。 Time 記錄要重啟的時間,驗證時間。 Day 用來累加天數。 複製代碼 代碼如下:[Reboot] Time=02:02:01 Day=3
Time of Update: 2018-12-08
VC和BCB中做一個Server的監聽程式,只需要指定連接埠,然後監聽(Listen)就行了.在C#找不到這個函數了,慢慢看MSDN,怎麼需要指定IP和Port才能監聽,那麼多網卡的機器應該怎麼寫程式呢?下面的程式可以解釋怎麼去做. TcpListener 類別會提供簡易的方法,用以在封鎖的同步模式中聆聽 (Listen) 和接受輸入的串連要求。您可以使用 TcpClient 或 Socket 來串連 TcpListener 。使用 IPEndPoint 、本機 IP
Time of Update: 2018-12-08
using 指令有兩個用途: 允許在命名空間中使用類型,以便您不必限定在該命名空間中使用的類型。 為命名空間建立別名。 using 關鍵字還用來建立 using 語句 定義一個範圍,將在此範圍之外釋放一個或多個對象。 請參見 using 語句。http://www.yaosansi.com/blog/article.asp?id=669 using namespace; using alias = type|namespace; 參數 Alias
Time of Update: 2014-04-10
ANDROID中靜態連結C檔案:0,首先安裝gcc相關的編譯器,具體不詳述,筆者用的是mingw,也可以用其他的編譯器,網路上很多安裝詳解,本文不做敘述。1,建立C代碼,命名為hello,編寫內容:#include<stdio.h>int main(){printf("hello c!!!");return 0;}2,進入c檔案指定的目錄中比如:d:\test中,通過gcc hello.c 或者gcc hello.c -static -o