Archivio mensile:Luglio, 2006

Nascondere la visualizzazione delle sottoproprietà

Creando controlli o componenti custom capita di creare proprietà che referenzino oggetti e in molti casi si vorrebbe evitare di vedere le proprietà di questi oggetti. In questi casi basta applicare alla proprietà il seguente attributo: <System.ComponentModel.TypeConverter(GetType(System.ComponentModel.ReferenceConverter))> _ Public Property MyConfirmButton() As System.Windows.Forms.Button



ISA abilitare la traslazione dell’indirizzo originale del client nelle Server Publishing

In ISA 2000 con SP1 è possibile eseguendo modifiche al registro: http://support.microsoft.com/default.aspx?scid=kb;en-us;311777 In ISA 2004 invece la configurazione è possibile direttamente nel Tab To del server publishing rule seleziondo Requests appear to come from the original client.



KB IIS 6.0 & SQL Server 2000

How to use the IIS Debug Diagnostics Tool to troubleshoot an IIS process that stops unexpectedly http://support.microsoft.com/kb/919789 How to troubleshoot an IIS process that consumes lots of RAM by using the IIS Debug Diagnostics tool http://support.microsoft.com/kb/919790 You cannot remotely connect to a named instance of SQL Server 2000 by using the TCP/IP protocol http://support.microsoft.com/kb/922131



KB XP & 2003 per problemi con USB

USB devices no longer work correctly after you install the Intel Chipset Software Installation Utility in Windows XP or in Windows Server 2003 http://support.microsoft.com/kb/921411 Una periferica USB connessa a un hub USB 2.0 non viene rilevata in Windows XP Service Pack 2, Windows Server 2003 Service Pack 1 o Windows Server 2003 versioni x64 http://support.microsoft.com/kb/892050/it



Promosso a moderatore di SysAdmin.it

Vorrei ringraziare SysAdmin.it per avermi promosso a Moderatore ora non mi resta che meritarmi la fiducia che mi è stata concessa.Colgo anche l’occassione per fare i complimenti a tutto lo staff per l’impegno e la compentenza con cui gestiscono questa community IT.



Mac-on-Stick

Per chi desidera avere sulla propria chiavetta USB non solo i dati ma anche le applicazioni il sito http://portableapps.com è un punto di riferimento dove trovare  Editor, Player, Browser, EMail Reader (a quando un portable OutLook Express?), Antivirus, etc.. Nella sezione Operating System del sito è addirittura possibile scaricare Mac-on-Stick ovvero una versione per pen…



KB SQL Server 2000, SQL Server 2005 & Word

How to configure SQL Server 2000 to use non-uniform memory access (NUMA) http://support.microsoft.com/kb/921928 SQL Server 2005 connectivity and Volume Shadow Copy Service (VSS) http://support.microsoft.com/kb/919023 How to troubleshoot problems that occur when you start or use Word 2007, Word 2003, or Word 2002 http://support.microsoft.com/kb/921541



ASP.NET 2.0 & Visual Studio .NET

How to embed resources in ASP.NET 2.0 assemblies http://support.microsoft.com/kb/910445 How to use application resource files (.resx) to efficiently create a localizable ASP.NET Web application http://support.microsoft.com/kb/917414 How to switch the IDE language in Visual Studio .NET 2002, Visual Studio .NET 2003, or Visual Studio 2005 http://support.microsoft.com/kb/919487



Microsoft Dynamics NAV 4.0 SP3

A qunato pare il rilascio per la versione italiana è schedulato per Ottobre 2006: https://mbs.microsoft.com/partnersource/downloads/servicepack/MicrosoftDynamicsNAV40SP3 Dovrebbe consentire una maggiore integrazione con SQL Server 2005: https://mbs.microsoft.com/partnersource/documentation/systemrequirements/navsqlcommunication.htm Intanto sono disponibili: Microsoft Navision 4.0 Service Pack 1 Update 3 https://mbs.microsoft.com/knowledgebase/KBDisplay.aspx?WTNTZSMNWUKNTMMYYUSKWOTVUNVLMRYSTZLOMXTXQLQUMLMM  Microsoft Navision 4.0 Service Pack 2 Update 1 https://mbs.microsoft.com/knowledgebase/KBDisplay.aspx?WTNTZSMNWUKNTMMYYUSKWOTVUNVLMRYSLUZPUSPNPLZVMYKP



Impostare l’attributo di un file tramite script

In DOS esiste il pratico comando ATTRIB: http://www.microsoft.com/technet/prodtechnol/windowsserver2003/it/library/ServerHelp/56202570-64a8-424b-8a11-09f5b8584cab.mspx?mfr=true In WSH invece è possibile ricorrere ad un codice del tipo che imposta l’attributo Archive per un singolo file o per tutti i file in una directory e relative subdirectory: WSH.echo ToggleArchiveBit(“F:\test.txt”) SetArchiveBit(“F:\Test”) Function ToggleArchiveBit(filePath)  Set objFSO = CreateObject(“Scripting.FileSystemObject”)  Set objFile = objFSO.GetFile(filePath)  If objFile.Attributes And 32…