MF 的个人资料CMF.net照片日志列表更多 工具 帮助
2月26日

在程式中開啟 檔案總管 (Using C#)

 

     // Starts Windows Explorer with two different command line arguments.
      ProcessStartInfo startInfo = new ProcessStartInfo("explorer.exe");

        // Opens a new single-pane Window for the default selection.
        // This is usually the root of the drive on which Windows is installed.

      startInfo.Arguments = "/n";         //  或 直接指定 資料夾路徑    startInfo.Arguments = "C:\\TEST\\";        

        Process.Start(startInfo);

2月14日

FTPClient.vb 原始碼

 
FTPClient.vb  原始碼
命名空間:    Utilities.FTP
 
下載點: 
 
2月13日

MSDN Library for Visual Studio 2008 繁體中文版

 
 MSDN Library for Visual Studio 2008 繁體中文版   下載點
 
 
簡述
MSDN Library 提供必要的程式設計資訊,包括開發 Web 服務及應用程式所需的技術參考文件、白皮書、軟體開發套件 (Software Development Kit,SDK) 和程式碼範例。此為 MSDN Library for Visual Studio 2008 的更新版。
 

概觀

MSDN Library 提供必要的程式設計資訊,包括開發 Web 服務及應用程式所需的技術參考文件、白皮書、軟體開發套件 (Software Development Kit,SDK) 和程式碼範例。此為 MSDN Library for Visual Studio 2008 的更新版。

此版本的更新內容包含:

  • Visual Studio 2008 文件
  • Windows Vista Developer 文件
  • Windows Driver Kit (WDK) 文件
  • Microsoft Office 2007 文件
  • Microsoft 知識庫
  • 以及其他...
2月2日

填問卷 抽1G隨身碟

 
 
本研究以『微軟技術社群』為研究對象。待資料蒐集完畢後,我們會從有效的填答樣本中隨機抽出30 位,以電子郵件通知並寄贈創見1G 的隨身碟,以感謝您撥冗填答這份問卷。
http://forums.microsoft.com/MSDN-CHT/ShowPost.aspx?PostID=2782105&SiteID=14
2月1日

取得 目前系統 登入 的 使用者帳號 (C#)

  private void button1_Click(object sender, EventArgs e)
        {
            // 取得 目前系統 登入 的 使用者帳號
           String Us=System.Windows.Forms.SystemInformation.UserName;
           MessageBox.Show( "使用者帳號:"  + Us);
         }
. . .