Suppose you have a block of text you want to be collapsible clicking a link. Here is the code: <script language=”javascript”> function switchDiv(id_div) { if(document.getElementById(id_div).style.display == ‘none’) { document.getElementById(id_div).style.display = ‘block’; } else { document.getElementById(id_div).style.display = ‘none’; } } </script>
Archive for the ‘How To’ Category
How to collapse a DIV – Javascript – HTML
Posted in How To, HTML, Javascript on June 6, 2007 | Leave a Comment »
How to copy SqlServer 2000 DTS packages between servers
Posted in How To, SqlServer 2000 on May 18, 2007 | Leave a Comment »
on the destination server create a new DTS Package (yes to transfer DTS you have to make a new DTS) create 2 different Microsoft OLE DB Provider for SQL Server connections (a source one and a destination one) select the source and then add a Transform Data Task connecting to the destination connection do not [...]
How to fix hal.dll missing or corrupt error message during bootstrap.
Posted in Computer Science, How To, Windows on May 15, 2007 | Leave a Comment »
Suppose you have reconfigured your partitions using Partition Magic or GPart. Suppose you delete partition #1 and your Windows starts from partition #2. When you will reboot 99% you will get a: windows root\system32\hal.dll is missing or corrupt, please re-install error message. The problem is that the partition number for the Windows Boot entry in [...]
CTFMON.EXE – how to remove it forever
Posted in How To, Office Automation on May 8, 2007 | Leave a Comment »
Control Panel / Pannello di Controllo Regional and Language Options / Opzioni Internazionali e della Lingua Languages Tab / tab Lingue Details / Dettagli Advanced Tab / tab Avanzate Check “Turn off advanced text services” / seleziona “Disattiva servizi di testo avanzati” No more ctfmon.exe! / ctfmon.exe non vi romperà più le balutte…
Cerca una parola o una frase in un file su Windows non funziona?
Posted in How To, Windows on May 2, 2007 | Leave a Comment »
Spesso quando fate Cerca di una parola o frase all’interno di un File nelle cartelle di Windows 2000 o XP il risultato della ricerca non è corretto, nel senso che spessissimo sembra che torni meno risultati del dovuto. E’ verissimo, però c’è una soluzione: Fare clic sul pulsante Start, quindi scegliere Cerca. Fare clic su [...]
EXPLORER.exe CRASH – RESTART del Desktop senza riavviare la macchina
Posted in Computer Science, How To, Windows on April 17, 2007 | Leave a Comment »
Quante volte vi sarà successo che Explorer.exe, l’eseguibile responsabile del disegno e della gestione del desktop, vi sia andato in crash? Molte! Spesso la soluzione di molti era spegnere e riaccendere la macchina, riavviare e cose simili, ovvero perdere il lavoro e le finestre aperte in quel momento. Esistono due metodi per ovviare al problema: [...]
La Truffa del Decreto Bersani Liberalizzazioni e Disdetta a SKY, ADSL e Telefoni in qualunque momento
Posted in Everyday Life, How To, How To Survive, Media on March 30, 2007 | 268 Comments »
clicca qui per accedere all’articolo Come DARE DISDETTA SKY SENZA PENALI e IMMEDIATA – moduli compresi
Access Denied issue when exec xp_cmdshell on a UNC pathname
Posted in Database, How To, SqlServer 2000, SqlServer 2005, TSQL, Windows on March 28, 2007 | Leave a Comment »
Suppose you use a Sql Server user to execute a shell command on a remote shared folder exec xp_cmdshell ‘command UNC path’ and you get an Access Denied error. This is because MSSQLSERVER, SQLSERVERAGENT services run as Local System Account that is not recognized on the remote machine you are pointing by the UNC path. Solution: [...]
How to preserve your Privacy and fight the Search History Log and Trace
Posted in How To, Internet & Web, Privacy on March 9, 2007 | Leave a Comment »
Here is a 10 points simple how to about your precious privacy. Every time you use Google, Yahoo or MSN Search, your searches and what you are searching for, when, from which IP, country, and so on, are logged by complex information systems. Something like a 1984 – Big Brother… If you want to preserve your [...]
How to convert MPG (miles per US and UK gallon) to l/100km and km/l (litres, km)
Posted in Ecology, How To on March 2, 2007 | 12 Comments »
Here is a simple script i’ve found and adapted to transform miles per gallon (MPG) to l/100km (litres for 100km) and km/l (kilometres for litre). The next time you will choose your new car, please select the most ECO!!! function mpguk_to_l100km(){document.fuel.l100km.value = 282.48105314 / document.fuel.mpguk.value;document.fuel.mpg.value = 235.21458432 / document.fuel.l100km.value;document.fuel.kml.value = 100 /document.fuel.l100km.value;}function mpg_to_l100km(){document.fuel.l100km.value = 235.21458432 [...]