December 2006 - Posts
Quite easy! Dim objWSH Dim objUserVariables Dim objSystemVariables Set objWSH = CreateObject("WScript.Shell") 'This actually returns all the User Variables, and you either loop through all, or simply print what you want Set objUserVariables = objWSH.Environment("USER")
Read More...
Getting OutOfMemoryExceptions when uploading large files is a very common problem and we troubleshoot it quite frequently at Microsoft GTSC. JohanS has a very nice entry on his blog and I can't resist myself to link to the solution which he provided!
Read More...
I was working on a project where I had the following requirement, and for a moment I thought, "Man, that's like a 5 min task for me!!". And it should have been!!!! Unfortunately though, I couldn't find the right document at the right time and it took
Read More...
I am so happy to see the Visual Studio 2005 Service Pack 1 (SP1) being released (finally)! Know more about it here ! I am too excited to write more :-) Click, Install, Enjoy!!! -Rahul
Read More...
I was planning to write an application today which simply opens an Excel file and read the Cell values into an array so that I could manipulate it accordingly. Since I don't have VS.NET installed on my home PC, I decided to do it with VB6 :o) Here is
Read More...
Quite often, we need to analyze Network traces to find out if the issue is something related to IIS... or the Client... or the Network (say, firewall, proxy etc.) itself. Although we have a specialized team in Microsoft PSS (Product Support Services)
Read More...