I am writing a web based app at the moment and I am wanting to maintain a history of the persons movements around the site […]
SQL Server 2008 R2 Nov CTP – Uninstall issues
I was attempting to uninstall the SQL Server 2008 R2 Nov CTP and I found the SQL server 2008 R2 (x64 in my case) uninstaller […]
SQL Server 2008 Uninstall – Restart Computer Failure
Sometimes when attempting to uninstall SQL Server, “Setup Support Rules” performs a check and fails on “Restart Computer” with the following error; “A computer restart […]
How to install U3 Apps to your U3 Drive
I have a san-disk U3 Drive and I wanted to update my version of keePass that I run on it. http://keepass.info/ I downloaded a U3 […]
SSRS – Reporting Services and custom assemblies
Just cost myself a few hours on this one. I have recently installed the 2008 R2 Nov CTP, I also have RS reports that use […]
Canon CameraWindow and Windows 7
After upgrading to windows 7 my camera software refused to work. I did a lot of searching and even emailed Canon and got a really […]
Textbox – supress previous entries – auto complete off
Hi, I am developing a website and noticed that all my text boxes were repeating the content that had been entered previously. Found this blog […]
SQL Server Date Format – Convert to varchar
Below is a nice little script to output the various formats displayed by sql server when using convert(varchar, getdate(), n). It just outputs the current […]
SQL Server Reporting Services (SSRS) – IIF statement divide by zero error
If you use the IIF statement to solve your divide by zero errors, you will most likely find that you still get divide by zero […]
SQL Server Reporting Services – Access textbox value in expression
If you need to progamatically access a control on your report then use the following expression [csharp]ReportItems!textbox1.Value[/csharp]