您的最佳的信息源和新聞 winvista, BIOS 并且 遠景 在互聯網

景色文章 名列前茅50 景色錄影 景色軟 景色幫助

編制程序

您當前瀏覽文章從 微軟視窗景色兼容軟件 匹配類別 編制程序.

寫電影腳本在窗口服務器的適當的殼與Perl

  • 事實: 殼寫電影腳本是當務之急為任何嚴肅它處理服務器的admin。 從自動化備份對檢查日誌和保留服務器表現和裝載在檢查,寫電影腳本是a必須。
  • 事實: 寫電影腳本在窗口的殼吮。 Monad (微軟力量殼)試圖固定那,但到目前為止結果是混雜的。
  • 事實: 寫電影腳本在Linux和其他*nix操作系統的殼是強有力,有大量文件證明和相當直接的。

多數人看一看在這三個事實和立即得出結論。 錯誤 結論: 因為它固有地在殼寫電影腳本的部門,缺乏您不可能適當地處理窗口服務器。

點擊持續讀「寫電影腳本在窗口服務器的適當的殼與Perl」

寫由計算機權威 2007年11月13日沒有評論.
讀更多文章 Perl 并且 Macintosh 并且 服務器管理 并且 寫電影腳本與Perl的殼 并且 并且 打擊 并且 操作系統 并且 編制程序 并且 編程 并且 窗口 并且 Linux 并且 指南 并且 亂砍 并且 軟件.

完成.NET輕便用酒&單音?

單音 是微軟的.NET框架的打開來源版本。 它實施大多後端框架特點,但不幸地,秋天平在它的相當少許面孔,當試圖顯示是的用戶界面時-什麼桌面apps是所有關於。

在其他手,更加重要地(大部分)微軟的Win32圖書館Linux口岸-窗口發展圖書館的核心附庸,和, win32接口元素。 與酒,您在Linux能跑許多傳統C++ win32 executables,以某些局限。

單音最大的絆腳石是使用P/Invoke叫當地非被處理的win32 dlls -的GUI和.NET節目單音是一個純淨的.NET環境,并且不可能處理他們。 但從上面描述,那是 確切地 what WINE excel at… So can’t we use WINE + Mono to make just about any .NET program run on Linux fresh out of the .NET compiler?

Unfortunately, the answer is no. Back when the Mono project was first starting out, the Mono development team considered using WINE to implement the System.Windows.Forms namespace of the .NET Framework (which is practically 100% native C++ unmanaged win32 code in .NET wrappers). But they made the right choice in deciding to not take the easy way and go that route, leaving the integrity of the Mono project intact and focusing on true cross-platform user interface libraries instead (the GTK# is now the UI Library of choice for cross-platform .NET applications).

Click to continue reading "Complete .NET Portability with Wine & Mono?"

Written by Computer Guru on September 19th, 2007 with no comments.
Read more articles on Coding and Alternatives and Mono and WINE and .NET Framework and c# and Windows and Programming and Linux and software.

Shell Namespace Extension: Adding Custom Command Module Items

Overview

In my earlier post, I showed how to create a Shell Namespace Extension using the default IShellView implementation (also known as DefView). One thing you might have noticed from the sample is that the Commands Module is void of even the default items such as “Organize” and “Views”.

Commands Module - FolderViewImpl

If you are developing your own Namespace and want to include the default buttons and/or add your own elements to the Commands Module as well, how do you accomplish this? The answer: you must implement the IExplorerCommand, IExplorerCommandProvider and IEnumExplorerCommand interfaces.

Below I describe what each of the interfaces is used for and what you need to do to properly implement them in your code.

IExplorerCommandProvider

After your Namespace is loaded, the Shell will ask your Namespace for an instance of an IExplorerCommandProvider. This interface exposes two methods: GetCommand and GetCommands. The Shell calls the GetCommand method to retrieve a specific IExplorerCommand object that matches the supplied GUID (Each command is identified by a GUID). The

Click to continue reading "Shell Namespace Extension: Adding Custom Command Module Items"

Written by chrdavis on September 5th, 2007 with no comments.
Read more articles on shell and namespace and Coding and API and Programming and vista and Windows Vista.