-
Posted: February 20th, 2012, 6:29pm UTC
Time Picker Extender User Control for ASP.NET Framework 4
-
Posted: February 20th, 2012, 4:44pm UTC
How about transforming first into a Regex and then letting the Regex do the work? E.g.:public static Regex GetRegex(string wildcard){ string pattern = Regex.Replace(wildcard, @"([^?*]+)?([?*])?", m => Regex.Escape(m.Groups[1].Value) +...
-
Posted: February 20th, 2012, 3:10pm UTC
It takes m and n as inputs from the user and prints the number of ways of distributing n objects in m boxes.
-
Posted: February 20th, 2012, 3:09pm UTC
As a developer who has spent a fair amount of time tweaking code for performance optimization, I'm having some issues with this article.First of all, who has generally accepted 10M iterations to test the performance? Unless your native code happens to be calling a function thousands or...
-
Posted: February 20th, 2012, 3:06pm UTC
A relative path solution for master pages.
-
Posted: February 20th, 2012, 3:04pm UTC
How to execute GIMP filters in C#.
-
Posted: February 20th, 2012, 3:01pm UTC
SQL Profiler is not included with SQL Express, this tip will help if you need to track client activity.
-
Posted: February 20th, 2012, 2:58pm UTC
The Windows 7 New Features Controls
-
Posted: February 20th, 2012, 2:56pm UTC
An extended Static markup extension implementation for Silverlight 5 and WPF supporting invoking static methods with arguments, and a Silverlight Type markup extension implementation.
-
Posted: February 20th, 2012, 2:54pm UTC
Quick and dirty way to ask/warn user when navigating off the page.
-
Posted: February 20th, 2012, 2:30pm UTC
How to use variable in SELECT TOP sql command
-
Posted: February 20th, 2012, 2:15pm UTC
An enhanced list control based on the standard CListCtrl MFC class.
-
Posted: February 20th, 2012, 2:02pm UTC
This article describes the project setup of building a WPF sample application with Self-Tracking Entity Generator for WPF/Silverlight.
-
Posted: February 20th, 2012, 1:47pm UTC
Include static JS / CSS / Images files from the IsolatedStorage in the WebBrowser control
-
Posted: February 20th, 2012, 11:11pm UTC
This article presents a generic REST client library and an example on how to use it.
-
Posted: February 20th, 2012, 10:46pm UTC
Composing controls in a user control improves the consistency of a resulting application but does not add much extra work or complexity.
-
Posted: February 20th, 2012, 9:04pm UTC
Prototype SIMD vectorized code effortlessly