-
LCD Screen Types and Acronyms
I have never understood the acronyms associated with LCD screens. It seemed each time I looked there was a new one. Up until now I just memorized which one was better than another. I just found these LCD definitions that clean all that up. Under the definition for “Resolution” are a list of the acronyms…
-
Pubic and Privates Methods
-
Enterprise Library Quick Start
-
Exception Handling Block Error
Ran into the error: There were no types found in the assembly 'MyAssembly' that implement or inherit from the base type 'System.Exception'. when trying to add a custom Exception Policy in the new Enterprise Library Exception Handling Application Block. After finding Jason's Post I saw the relevance to my problem. I copied all my references…
-
Sauce Reader
I have been looking for a possible replacement for Newsgator because my Outlook is starting to get a bit crowded and will sometimes go into endless restarts. My biggest feature request is the ability to view all the items in one browser interface like Newsgator or Bloglines. I want to be able to have a…
-
Could not write to output file error
-
Code Books
-
Community Server 1.0 Released
-
Count Distinct Rows in SQL Server
Question: How do you count distinct rows in a query? 1st Try: I *thought* this would work: select distinct count(taskid) from #temp however, it returned the count of all taskid's. 2nd Try: then I tried keeping duplicates out to begin with, so I could just do a normal count(taskid). That wasn't fool proof. Solution: Just…
-
Validators Not Submitting on an ASP.NET Form
WOW! I have been having this problem where my submit buttons would just stop posting back for no reason. It seemed that some pages would work, and some didn’t. I just didn’t know enough to even know where to look. Thank goodness for Scott Mitchell. He wrote up the reason for it here: http://scottonwriting.net/sowblog/posts/2943.aspx To…