Unknown Recipes
-
Publish a ClickOnce deploy with Visual Studio and assemblies not referenced
When you build a ClickOnce deploy Visual Studio do not get assemblies not referenced in the project or any other dependent project. Basically the problem are assemblies located in other folders than the project folder.
-
New InProcess transport for WCF
A new NullTransport for WCF was implemented, you can found the bits in http://www.codeproject.com/WCF/NullTransportForWCF.asp.
-
Code Task Scheduler
I publish an early alpha version of the Code Task Scheduler, that allows schedule managed code. The bits are in Codeplex http://www.codeplex.com/cts.
-
Using IValueConverter to format binding values in WPF
First we need implement the value converter, to accomplish this we need to create a new class that implements System.Windows.Data.IValueConverter, this interface works only for simple binding. If you need to use multi binding you will need implement System.Windows.Data.IMultiValueConverter. In the attached sample both interfaces are implemented.
-
How to do virtual paging with ASP.NET, AJAX and SQL Server 2005
This sample provides a way to avoid full postback of the page, just updating the grid that contains the data.
-
Parsing SQL Like to avoid overloads SQL Server
When using Stored Procedures or embeds SQL in a query generally we forget about parse the parameters where a Like condition is present. The are two possible wildcards for the LIKE function in SQL Server, that are _ (underscored), that replaces a character ant %, that replaces any quantity of characters.