Silverlight: The First Rich Text Editor
Many people are waiting for a way to type rich text. Even if I think that Microsoft will bring out their own one, nobody knows how long to wait for... more »
0 commentsSave Tags: .net, frameworks
Jon Skeet on "C# in Depth"
Jon Skeet has worked with C# since 2002, and has been a Microsoft C# MVP since October 2003. Jon Skeet is also the author of the latest book by... more »
0 commentsSave Tags: .net, books
An introduction to LINQ for db4o
An article that explains and demonstrates the new LINQ implementation that comes with the open source object database "db4o".
0 commentsSave Tags: .net, database, frameworks, open source
Designing a Data Access Layer for ASP.Net Applications
Get more from ADO.Net using DAL
-1 commentsSave Tags: .net, database, methodology
Porting Silverlight 2.0 to WPF
For a while now, I've been writing a Silverlight 2.0 game based on Desktop Tower Defense. Recently I wanted to profile my code to look for any... more »
0 commentsSave Tags: .net, frameworks
Get Personal with C# Custom Attributes
C# attributes may seem like an insignificant element of C# grammar, but did you know they provide a powerful way to extend your metadata? This goes a... more »
0 commentsSave Tags: .net, microsoft, usability
Auto Generate Sequence Diagrams from a .NET DLL
Auto Generate Sequence Diagrams from a .NET DLL
0 commentsSave Tags: .net
Protected Proxy Example in C#
Shows what a protection proxy does, and how to make one. Make you code simpler and your app more reliable with this design pattern. Includes plenty of... more »
0 commentsSave Tags: .net, frameworks, how-to, methodology
DataGridView Tips and Secrets
Explores ways to improve your DataGridViews. They have tons of properties and methods, but which ones are important? Includes steps to enhance your... more »
0 commentsSave Tags: .net, frameworks, usability, windows
Installing Mono 1.9.1 on Ubuntu 8.04 Hardy Heron
Describes where to find and install Mono 1.9.1 on Ubuntu 8.04 Hardy Heron and Debian Etch.
0 commentsSave Tags: .net, how-to, unix-linux
Silverlight, Data and Services: The complete story
This article is a complete tutorial on how to work with data and services inside your Silverlight applications. You'll see how to build services that... more »
0 commentsSave Tags: .net, how-to, microsoft, ria
Creating a Battery Power Status Monitor in C#
Sometimes programs need to know the power status of a computer. An example is Windows Update, which often requires a computer to be running on mains... more »
0 commentsSave Tags: .net, how-to, microsoft, other languages
LINQFarm: Understanding IEnumerable<T>, Part I
The IEnumerable<T> interface is a key part of LINQ to Objects and binds many of its different features together into a whole. This series of... more »
0 commentsSave Tags: .net, frameworks
Selected posts on CLR, threading, Internationalization and WPF
Selected posts from my blog on CLR, threading, Internationalization and WPF
0 commentsSave Tags: .net
Taking Simple Screenshots with C#
This tutorial walks you through how to take screen-shots in C#, using visual studio. Very simple and includes a Visual Studio solution for those who... more »
0 commentsSave Tags: .net, microsoft, other languages, windows
Slug Transliterator Extension for BlogEngine.NET
While I'm at it, I decided to write another extension for BlogEngine.NET. Those writing in English or in other Latin alphabet language only aren't... more »
0 commentsSave Tags: .net, frameworks
Getting to grips with MVC
If you are developing large enterprise web applications which rely a lot on view state, do not use MVC. If however you are developing a relatively... more »
0 commentsSave Tags: .net, frameworks
Health Monitoring in ASP.NET 3.5
Keeping an eagle's eye on the errors and important events occurring in your web site is an important administrative job. ASP.NET health monitoring... more »
0 commentsSave Tags: .net, web design
HttpContext Object for Developers
HttpContext object will hold information about the current http request. In detail, HttpContext object will be constructed newly for every request... more »
0 commentsSave Tags: .net, web design
More on the ThreadPool Bug in .NET 2.0 SP1
There appears to be some confusion about this .NET 2.0 SP1 ThreadPool bug I found. Can you believe someone might be wrong on the internet?
0 commentsSave Tags: .net
Prompt Control for ASP.NET AJAX
In this article I set out to breathe new life into the types of alerts, dialogs and prompts that are available to ASP.NET developers. In ASP.NET web... more »
0 commentsSave Tags: .net, ajax, web design
Fix for my Moving ViewState solution
An embarrassingly long time ago a nice reader called CornĂ© commented that my solution did not work with AJAX. I believe this was due to the AJAX... more »
0 commentsSave Tags: .net, web design
Localizing MVC for ASP.NET views and master pages
Microsoft's MVC for ASP.NET is still under serious development but at the moment support for localization is a little weak. Here's one approach that... more »
0 commentsSave Tags: .net, frameworks, web design
Designing Efficient Immutable .Net2.0 Objects
By definition immutable object is the object whose state can not be changed after it is created. That means, after creating the object, its publicly... more »
0 commentsSave Tags: .net, frameworks
How to make a CheckBox fire the ItemCommand Event of a Repeater
At work today I tried to do something I though would be simple, I needed to add a check box control to a repeater's item template and have it fire the... more »
0 commentsSave Tags: .net, web design