-
Posted: February 29th, 2012, 3:48pm UTC
Welcome to our continuing series of Code Project interviews in which we talk to developers about their backgrounds, projects, interests and pet peeves. In this installment we talk to Code Project MVP, “math professor, programmer, consultant, manager, and statistician” John D. Cook.
-
Posted: February 29th, 2012, 2:43pm UTC
If you are developing with Windows Forms, you know that due to thread safety reasons you can not change any UI control’s settings from threads different from UI thread itself. Assuming you have a multithreaded application where you want to acquire some values in parallel and then display them
-
Posted: February 29th, 2012, 2:32pm UTC
This article discusses basic concepts in AOP and uses PostSharp to implement AOP concepts in a C# application.
-
Posted: February 29th, 2012, 2:21pm UTC
To explain Preprocessor directives in C#
-
Posted: February 29th, 2012, 1:24pm UTC
This article is about a similar function which is generated using a Linux shell script and provides a similar facility.
-
Posted: February 29th, 2012, 1:24pm UTC
How a computer can be identified in order to generate a unique ID.
-
Posted: February 29th, 2012, 12:09pm UTC
This article is about using Rosyln to evaluate user input in a value converter.
-
Posted: February 28th, 2012, 12:18am UTC
If you are following my recent blog posts, you may have noticed that I’ve been writing a lot about Guest User in SQL Server. Here are all the blog posts which I have written on this subject: SQL SERVER – Disable Guest Account – Serious Security Issue SQL SERVER – Force Removing User from Database –
-
Posted: February 27th, 2012, 6:05pm UTC
This article explains how client-side view engines can be used in ASP.NET MVC.
-
Posted: February 27th, 2012, 5:48pm UTC
Mysterious problem in WPF v4, feature not defined.
-
Posted: February 27th, 2012, 5:37pm UTC
I wrote a simple extension for the MDbg debugger that adds a watch-trace (wt) command to its shell, allowing you to display and customize the method call trees. In this post I’m going to show you how this extension was built and how it can be used.
-
Posted: February 27th, 2012, 4:44pm UTC
Registering a custom URL protocol for invoking an application
-
Posted: February 27th, 2012, 4:23pm UTC
Simple example showing the communication between Silverlight client and Java application.
-
Posted: February 27th, 2012, 4:23pm UTC
ASCII and numeric sorting in the ASP.NET GridView
-
Posted: February 27th, 2012, 3:45pm UTC
Implementation of Connected Component Labeling.
-
Posted: February 27th, 2012, 3:39pm UTC
Simple reading, accessing and writing of INI configuration files on Windows/Linux/Unix using a cross-platform and fully Unicode/MBCS/UTF-8 aware library
-
Posted: February 27th, 2012, 2:05pm UTC
LEAD Technologies is always finding new ways to turn complex application development tasks into simple, expedient and profitable projects. The LEADTOOLS PACS Storage Server application is a fully functional, OEM-ready application with source code.
-
Posted: February 27th, 2012, 1:49pm UTC
The article shows how to enhance the shopping cart of the Microsoft ASP.NET MVC Music Store 3.0 sample application by making the workflow more practical with a quantity update feature and unobtrusive data validations.
-
Posted: February 27th, 2012, 1:31pm UTC
Receive YouTube Feeds with API 1.9.0.0 using MVVM Light Toolkit
-
Posted: February 27th, 2012, 5:32am UTC
Solution for creating a Leaderboard for a Windows Phone 7 (WP7) XNA game
-
Posted: February 27th, 2012, 4:08am UTC
Defining a Windows-Service to incrementally backup an assigned directory to Windows Azure Blob Storage using Blob REST based upon root directory change notifications to FileSystemWatcher.
-
Posted: February 26th, 2012, 5:47pm UTC
Convert amount in word for Bangladeshi currency
-
Posted: February 26th, 2012, 5:25pm UTC
Task Tracker is an offline web application developed using HTML5,CSS3 and Javascript.
-
Posted: February 26th, 2012, 11:24am UTC
Converting nearly every type to another type
-
Posted: February 26th, 2012, 10:07am UTC
A code first real life data model case
-
Posted: February 26th, 2012, 9:52am UTC
Great analysis!I found out that Regex can be accelerated by a factor of about two.Instead of new Regex(@"\n", RegexOptions.Compiled|RegexOptions.Multiline);you can speed up by using:new Regex(@"^.*?$", RegexOptions.Compiled|RegexOptions.Multiline);But admittedly, nothing beats...
-
Posted: February 25th, 2012, 2:26pm UTC
A great tool to help you understand DataGridView events as you navigate the DataGridView.
-
Posted: February 25th, 2012, 2:09pm UTC
How to concatenate many rows into a single text string using SQL Server 2008.
-
Posted: February 25th, 2012, 2:07pm UTC
We wanted to see how much better the PVS-Studio analyzer has become and which of the previous errors have been fixed in Notepad++.
-
Posted: February 25th, 2012, 2:02pm UTC
How to concatenate many rows into a single text string using SQL Server 2008
-
Posted: February 25th, 2012, 1:57pm UTC
Workaround for Valums AJAX File Upload IE9 issues.
-
Posted: February 25th, 2012, 1:52pm UTC
I’ve tried to find a jQuery editor plugin which works out of the box without configuration. The WMD editor used by stackoverflow.com looked nice but I couldn’t find a version that I got running. My main issue with most editors …Read more »
-
Posted: February 25th, 2012, 1:34pm UTC
A simple CSS parser designed to work with iTextSharp for HTML to PDF generation
-
Posted: February 25th, 2012, 12:24pm UTC
Building C++ Applications with HTML5
-
Posted: February 25th, 2012, 11:01am UTC
Embed a functional console window in a C# application.
-
Posted: February 25th, 2012, 10:23am UTC
A custom made DropDownList control for ASP.NET
-
Posted: February 25th, 2012, 8:41am UTC
On the importance of Option Strict...
-
Posted: February 25th, 2012, 6:06am UTC
To not having spoiled the client code with #if DEBUG, you might use the following:[STAThread]static void Main(){ Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); try { Debugging.DebugSetupConsole(); ...
-
Posted: February 25th, 2012, 5:09am UTC
I prefer the [Conditional("DEBUG")] attribute over #if DEBUG.This is especially advised for your logging example.E.g.[System.Diagnostics.Conditional("DEBUG")]private void Validate() { /* check instance integrity */ }or[System.Diagnostics.Conditional("DEBUG")]public static...
-
Posted: February 25th, 2012, 2:33am UTC
How to add reCAPTCHA & Email Confirmation to your ASP.NET MVC site
-
Posted: February 25th, 2012, 8:49pm UTC
Porting Axel a lighter download accelerator for Linux and other Unices to NATIVE WIN32
-
Posted: February 24th, 2012, 1:08pm UTC
How to install packages with Windows Installer XML.
-
Posted: February 24th, 2012, 12:58pm UTC
How to implement server-side sorting with the jqxGrid widget.
-
Posted: February 24th, 2012, 12:54pm UTC
Looking for missing files in your project.
-
Posted: February 24th, 2012, 12:50pm UTC
Dolphin-emu is a Gamecube and Wii emulator.
-
Posted: February 24th, 2012, 12:45pm UTC
20 mins installation guide in order to get you with a Mac OS X Lion VM in no time.
-
Posted: February 24th, 2012, 12:14pm UTC
How to update an existing IndexedDB objectStore.
-
Posted: February 24th, 2012, 12:09pm UTC
Print PDF in ASP.NET MVC.
-
Posted: February 24th, 2012, 11:55am UTC
This is the first part of a series about writing an expression evaluator in C#.
-
Posted: February 24th, 2012, 11:49am UTC
This might not be a ground breaking discovery but I was thinking I might be able to share this piece of code to someone who might need it.