Time of Update: 2017-02-28
'瀏覽選擇檔案 OpenFileDialog dlg = new OpenFileDialog(); dlg.DefaultExt = "xls"; dlg.Filter = "Text&
Time of Update: 2017-02-28
程式|木馬
Time of Update: 2017-02-28
函數|網站 using System;using System.Drawing;using System.Collections;using System.ComponentModel;using System.Windows.Forms;using System.Windows.Forms.Design;using System.DirectoryServices;using System.Reflection;using
Time of Update: 2017-02-28
iis|網站 using System;using System.Drawing;using System.Collections;using System.ComponentModel;using System.Windows.Forms;using System.Windows.Forms.Design;using System.DirectoryServices;using System.Reflection;using
Time of Update: 2017-02-28
下載 //儲存檔案夾選擇對話方塊引用//添加引用system.design.dll /using System.Windows.Forms.Design;private void button4_Click(object sender, System.EventArgs
Time of Update: 2017-02-28
轉換 using System;using System.Collections.Generic;using System.Text;namespace ConsoleApplication1{ class Program { static void Main(string[]
Time of Update: 2017-02-28
//大家在做報表或查詢的時候都會有給使用者預設一些可選的日期範圍(如上圖) //如本年度銷售額、本季度利潤、本月新增客戶 
Time of Update: 2017-02-28
前公司在製作播客系統(Web程式)中,用到從視頻截圖功能.下邊是截圖CatchImg方法,可從大多數的視頻檔案中截圖成功,大家可測試;如果截圖不成功,大多是因為視頻本身的問題,如編碼通訊協定或加了密.但從線上錄製的視頻Flv檔案中截圖,還未發現截圖失敗;/// <summary>/// @從視頻檔案截圖,產生在視頻檔案所在檔案夾/// 在Web.Config 中需要兩個前置配置項:/// 1.ffmpeg.exe檔案的路徑/// <add key="ffmpeg" value=
Time of Update: 2017-02-28
程式|執行 1. System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName 擷取模組的完整路徑。2. System.Environment.CurrentDirectory
Time of Update: 2017-02-28
把表單的FormBorderStyle設為FormBorderStyle.Noneusing System.Runtime.InteropServices; private const uint WS_EX_LAYERED = 0x80000; private const int WS_EX_TRANSPARENT = 0x20;
Time of Update: 2017-02-28
放大|解決|問題 最近在寫工具的時候發現了一個很噁心的問題,當用DrawImage做映像放大的時候C#的預設放大演算法不是NearestNeighbor演算法,而Java Swing的drawImage放大演算法預設為NearestNeighbor演算法,解決方案是: g.InterpolationMode =
Time of Update: 2017-02-28
攻擊|區別
Time of Update: 2017-02-28
using System;using System.Runtime.InteropServices;using System.Drawing;using System.Drawing.Imaging;namespace CSharpChat{ /// <summary> /// ScreenCameraClass 的摘要說明。 /// </summary> public class ScreenCameraClass {&
Time of Update: 2017-02-28
using System.Runtime.InteropServices; [StructLayout(LayoutKind.Sequential)]struct CURSORINFO{ public int cbSize; public int flags; public IntPtr hCursor; public Point
Time of Update: 2017-02-28
web|web服務|web伺服器 摘要這 篇文章討論了如何使用C#開發一個簡單的web伺服器應用程式。儘管我們可以使用任何一種支援.NET的程式設計語言開發,但我選擇了C#。本篇文章中的代碼 是使用微軟的β2版的Visual C# Compiler Version 7.00.9254 [CLR version
Time of Update: 2017-02-28
一 :編程思想 1、建立啟動盤 插入要建立的啟動盤,程式自動檢測光碟機中光碟片,利用WMI(Windows管理架構:Windows Management Instrumentation)讀取該光碟片的序號(具有唯一性),把該序號寫入註冊表。 2、驗證 程式執行時,自動檢測光碟機中的光碟片,利用WMI擷取序號,然後讀取註冊表中先前寫入的序號,二者比較,相同則程式啟動成功,否則提示插入啟動盤。 二 :相關知識 1、 什麼是WMI? WMI(Windows管理架構:Windows
Time of Update: 2017-02-28
excel private void btnSaveAsData_Click(object sender, EventArgs e) { Excel.Application xlsApp = new Excel.Application(
Time of Update: 2017-02-28
excel|列印 private void btnPrintData_Click(object sender, EventArgs e) { Excel.Application xlsApp = new
Time of Update: 2017-02-28
delegate void LINEDDAPROC(int X, int Y, IntPtr lpData);[DllImport("gdi32.dll")]static extern int LineDDA(int nXStart, int nYStart, int nXEnd, int nYEnd, LINEDDAPROC lpLineFunc, IntPtr lpData); private const byte PT_CLOSEFIGURE
Time of Update: 2017-02-28
using 指令有兩個用途:允許在命名空間中使用類型,以便您不必限定在該命名空間中使用的類型。為命名空間建立別名。using 關鍵字還用來建立 using 語句 定義一個範圍,將在此範圍之外釋放一個或多個對象。請參見 using 語句。http://www.yaosansi.com/blog/article.asp?id=669 using namespace;using alias = type|namespace;參數Alias