Wednesday, February 27, 2013

INFORMATION_SCHEMA lacking view for Default contraints

bizarre omission

use either INFORMATION_SCHEMA.COLUMNS   to get the default on the column
or sysobjects WHERE xtype = 'D'  for info about the constraint

Print Screen copies black area

I am guessing this has to do with graphics accelerators and what-not.
alt-printscreen still works

Tuesday, February 26, 2013

Unable to start Program there are no more files

very ominous sounding .




I found a bunch of IE's running in the background that I had to kill.



Friday, February 22, 2013

Flags On Enum

2 points


  1. make sure the numbering of the enum is base 2 
  2. don't check for the first value (0),if you must - use that for a nothing value

Concatenate list with LINQ

listBlah.Aggregate((first, second) => first + "<BR />" + second)

TFS Error: The cache file VersionControl.config is not valid and cannot be loaded

Just delete VersionControl.config

Thursday, February 21, 2013

Testing CSS Properties When Inherited

testing with javascript is not helpful because it returns "inherit"
JQuery css function likewise returns "inherit"

I used the is function - that works properly

for e.g. $(this).is(":visible")