Category Archives: Uncategorized

Content Moved to www.davidyardy.com

View Blog at  http://www.davidyardy.com

Posted in Uncategorized | Leave a comment

Hello world!

Welcome to WordPress.com. This is your first post. Edit or delete it and start blogging!

Posted in Uncategorized | 1 Comment

.NET 3.5 SP1 : How to tell if it is installed?

Ever want to know if you have 3.5 SP1 installed?  Shown below are two ways to determine. 1.) Take a look at HKLM\SOFTWARE\MICROSOFT\NET Framework Setup\NDP\v3.5 Shown below are two servers.  The top one does not have SP1 installed while the … Continue reading

Posted in Uncategorized | 20 Comments

New Blog Location

I have moved my web log to the following location http://blog.davidyardy.com/ My RSS feed can be found at http://feeds.feedburner.com/davidyardy From this RSS feed you can view all log entries on my new and old blog location. It was time to … Continue reading

Posted in Uncategorized | Leave a comment

Visual Studio 2008 Offline Support

When saving files from within Studio I was prompted  to "Save As", "Overwrite", or "Cancel".  I thought it was very odd.  I then looked around and noticed that none of my files displayed the typical source control lock.  It looked … Continue reading

Posted in Uncategorized | Leave a comment

SQL Server String Concatenation (T-SQL) – New way to do this in SQL 2005

For years I have been doing something similar to the following: DECLARE @list varchar(200)SET @list =”SELECT @list = COALESCE(@list + ‘,’,”) + DisplayName FROM Customers Here COALESCE returns the first thing in the list that is not null.  This can … Continue reading

Posted in Uncategorized | Leave a comment

SQL Server Management Studio – Query Analyzer

This is an issue that is good to put in the memory banks.  In QA     exec sproc ‘{put string in here > 128 characters}’   — it works fine     exec sproc "{put string in here > 128 characters}" — this doesn’t … Continue reading

Posted in Uncategorized | Leave a comment

NullReferenceException with Asp.Net Cache

I have been chasing this NullReferenceException for a while.   I found the following information that appears to be an answer to my problem.  I am surprised that there is not more information published regarding usage of cache with threading etc. … Continue reading

Posted in Uncategorized | Leave a comment

User Interface Testing with Asp.Net

Conscientious web developers have tried for a number of years to automate the web interface.  To date this is not possible with Visual Studio Professional or even the Test Suite products delivered with Team Foundation. Microsoft has missed the boat … Continue reading

Posted in Uncategorized | 1 Comment

Interesting Job Environment

Check out this small video clip of a job environment in Vermont.  This type of job environment really interests me.  Is your job environment like this?  The good and bad of this type of environment?

Posted in Uncategorized | 1 Comment