Friday, October 30, 2009

Replace "Search_String", below, with the string you want to find.

SELECT ROUTINE_NAME, ROUTINE_DEFINITION
FROM INFORMATION_SCHEMA.ROUTINES
WHERE ROUTINE_DEFINITION LIKE '%Search_String%'
AND ROUTINE_TYPE='PROCEDURE'

Thursday, October 08, 2009

My test project will not build and it indicates that the proper reference is not set. So where is "Microsoft.VisualStudio.QualityTools.UnitTestFrameWork.dll" and how do I get it? You already have it.

...%VSINSTALLDIR%\Common7\IDE\PublicAssemblies

Add the reference to the bin directory and you're all set.
Using firefox I downloaded "Microsoft Enterprise Library 4.1". When trying to install I get an error "A network error"....After repeated aptempts, no luck.

The fix. Download the .msi by using IE. It worked but do not understand why. Oh well....

Tuesday, October 06, 2009

If you get this error message "Only one instance of a ScriptManager can be added to the page.", make sure you have a .aspx page set as "start page" before wasting a lot of valuable time searching for an answer. I unfortunately did waste the time to look up the error with no one knowing the cause.

At first glance, it appears that you put a "ScriptManager" control on two pages like master page as well as .aspx page. After seaching high and low, I figured out the problem. Cheers!