La vostra fonte migliore delle informazioni e delle notizie circa microsoft, xp e microsoft sul Internet

ARTICOLI del Vista PRINCIPALE 50 Vista VIDEOS Vista MOLLE AIUTO del Vista

Codificazione

Attualmente state passando in rassegna gli articoli da Software compatibile di MS Windows Vista abbinare la categoria Codificazione.

Shell adeguato Scripting sugli assistenti di Windows con il Perl

  • Fatto: Shell che scripting è un mosto per il qualsiasi serio ESSO admin che controlla un assistente. Dall'automazione i sostegni al controllo dei ceppi ed a mantenere le prestazioni dell'assistente e del carico nel controllo, scripting è a deve.
  • Fatto: Shell che scripting su Windows succhia. Il Monad (alimentazione Shell di Microsoft) tenta di riparare quello, ma finora i risultati è mescolato.
  • Fatto: Shell che scripting su Linux e su altri sistemi operativi del *nix è potente, ben documentato ed abbastanza straight-forward.

La maggior parte della gente dà un'occhiata a questi tre fatti ed immediatamente giunge ad una conclusione. torto conclusione: non potete controllare correttamente un assistente di Windows perché inerentemente sta difettando di nel reparto scripting delle coperture.

Scatti per continuare a leggere “Shell adeguato Scripting sugli assistenti di Windows con il Perl„

Scritto da Computer Guru sopra 13 novembre 2007 con nessun osservazioni.
Legga più articoli sopra Perl e Macintosh e Amministrazione dell'assistente e Shell Scripting con il Perl e Batch e Colpo e Sistemi operativi e Codificazione e Programmazione e Windows e Linux e Guide e Incisione e software.

Completi la portabilità di .NET con vino & mono?

Mono è la versione di apr-fonte della struttura di .NET del Microsoft. Effettua la maggior parte delle caratteristiche posteriori della struttura, ma purtroppo, cadute piane sulla relativa faccia piccola graziosa quando tenta di visualizzare l'interfaccia di utente - che è che cosa i apps desktop sono interamente circa.

Vino sulla altro-mano, è più d'importanza un orificio (parti importanti di) della biblioteca di Win32 del Microsoft - le dipendenze di Linux di nucleo delle biblioteche di sviluppo di Windows e, gli elementi dell'interfaccia win32. Con vino, potete fare funzionare molti executables tradizionali di C++ win32 su Linux, con determinate limitazioni.

Il mono blocco inciampante più grande è i programmi di .NET e del GUI che usano P/Invoke per denominare i dlls non-controllati natali win32 - mono è un ambiente puro di .NET e non può maneggiarlo. Ma dalla descrizione qui sopra, quello proviene esattamente 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.