.NET news » Examples Examples Rss Feed

Developing a Realtime Stockreader using WPF and Yahoo Finance Data

RealtimeSockreader is a desktop widget for viewing live stock data of your portfolio
6 Apr 2008, 10:39:00   Source: Developing a Realtime Stockreader using WPF and Yahoo...   Tags: Examples

Jigsaw Puzzle Game using Ajax Drag and Drop

This tutorial is intended to explains quickly how to implement Drag and Drop using ASP.NET 2.0 AJAX Futures November CTP.

To explain this technology I've created a simple project with a custom Ajax control that implement a Jigsaw Puzzle Game.

30 Mar 2008, 08:31:00   Source: Jigsaw Puzzle Game using Ajax Drag and Drop   Tags: Ajax Examples

DirectX.Capture Class Library

A .NET class library for capturing video and audio to AVI files.
29 Mar 2008, 14:42:00   Source: DirectX.Capture Class Library   Tags: Multimedia Examples

Arcball OpenGL in C#

Arcball (also know as RollerBall) is probably the most intuitive method to view three dimensional objects. The principle of the arcball is based on creating a sphere around the object, and let users to click a point on the sphere and drag it to a different location. There is a bit of math involved of course and you can Google it. The code here is a C# source code implementing an arcball in OpenGL (CsGL to be exact).
28 Mar 2008, 17:04:00   Source: Arcball OpenGL in C#   Tags: Graphics Examples

Texture Transfer using Efros & Freeman's Image Quilting Algorithm

A texture transfer program that implements Efros & Freeman's texture transfer algorithm

AJAX-style Asynchronous Progress Dialog for WinForms

A base class for adding a rich asynchronous progress animation to any Form
2 Mar 2008, 07:47:00   Source: AJAX-style Asynchronous Progress Dialog for WinForms   Tags: GUI Examples

RegEx Tester - Regular Expression Tester

It aids you to develop and fully test your regular expression against a target text.
2 Mar 2008, 04:02:00   Source: RegEx Tester - Regular Expression Tester   Tags: Examples Software

RSS Feed Link Reader

Constructing a simple application that may be used to view RSS feeds from the desktop
29 Feb 2008, 08:56:00   Source: RSS Feed Link Reader   Tags: Examples

A C# central logging mechanism using the Observer and Singleton patterns

This article shows an excellent mechanism for adding logging to a C# project. It is extremely powerful and versatile, yet very simple to implement and use. It uses two very common programming patterns: the singleton and the observer.
15 Feb 2008, 20:47:00   Source: A C# central logging mechanism using the Observer and...   Tags: Examples

Building an MVP Framework for .NET. Part 1: The Basics of MVC and MVP

This article starts a series addressing the development of an MVP Framework under the .NET platform.
11 Feb 2008, 20:27:00   Source: Building an MVP Framework for .NET. Part 1: The Basics of...   Tags: Examples