Archive for November, 2007

DHTML expand and collapse div menu

Tagged in Html/Code Tips on November 26th, 2007

DHTML expand and collapse div menu

How to hide a table inside of a Div tag

Post to Twitter

Testing the Lightbox

Tagged in Random Nothing on November 25th, 2007

Just testing the Lightbox plugin

Picture form Dorkfest.com

Post to Twitter

Enable Broker on SQL 2005

Tagged in Dot Net on November 22nd, 2007

ALTER DATABASE XXXX SET NEW_BROKER WITH ROLLBACK IMMEDIATE

Post to Twitter

Master Page & Find Control

Tagged in Dot Net on November 20th, 2007

How to find a control on a Master Page
ContentPlaceHolder cph = this.Form.FindControl(“ContentPlaceHolder1″) as ContentPlaceHolder;

TextBox ctrlInput = (TextBox)cph.FindControl(“mycontrol”);

Post to Twitter

ReSharper on Visual Studio 2008

Tagged in Dot Net on November 14th, 2007

How to add resharper to Visual Studio 2008 Team Suite :
Run at the Command Prompt
msiexec /i ReSharperSetup.3.0.1.msi VSVERSION=9.0

Post to Twitter

HowTo: Create a SQL Server Reporting Services Report from a Stored Procedure

Tagged in Dot Net on November 9th, 2007

When creating the report with the wizard, if this parameter has no default value, you’ll have to do something like this: EXEC usp_MyStoredProcedure ‘Value Name’ in order to get through the wizard.

It will pre-populate the Data Values for you.

Post to Twitter