.NET news » Examples Examples Rss Feed

Building an MVP Framework for .NET. Part 2: Implementing Core Functionality

Basing on the concepts introduced in the first part, this article proceeds to implement the core MVP Framework funtionality.
11 Feb 2008, 18:44:00   Source: Building an MVP Framework for .NET. Part 2: Implementing...   Tags: Examples

Sound activated recorder with spectrogram in C#

This project demonstrates an implementation of the waterfall spectrogram and use of statistical data to trigger events in near real-time. This demonstration utilizes the Wave classes developed by Ianier Munoz.
28 Jan 2008, 02:25:00   Source: Sound activated recorder with spectrogram in C#   Tags: Multimedia Examples

Advanced Text Editor with Ruler

I spent a lot of time searching the Internet for controls like this, but the best ones are shareware and others did not fit my needs. So, what does this control have? I tried to make it look like Microsoft Word and I think that there are some similarities. The ruler lets you change the following: left and right margins, left indent, hanging indent and right indent. You also can disable margins (their values are set to 1).
26 Jan 2008, 03:03:00   Source: Advanced Text Editor with Ruler   Tags: Examples

Disk Analyzer

Disk Analyzer enables you to understand how much space the files and directories on your disk had taken up, and helps you find files and folders that you no more use. The tool analyses your disk drives and collects statistics of directory sizes and files sizes by type which you can view as overview charts and details tables.
25 Jan 2008, 17:30:00   Source: Disk Analyzer   Tags: Examples

Combined Grayscale and Color Images

After growing tired of spending hours zoomed in at 800% magnification using the polygon lasso tool to create combined grayscale and color images in Macromedia Fireworks, I decided that there had to be a better way. Thus I embarked upon creating this application to make my life and hopefully that of others easier.
25 Jan 2008, 11:51:00   Source: Combined Grayscale and Color Images   Tags: Graphics Examples

Backup and Restore Session in .Net 2.0

This code backup your session in byte stream. It is useful when you swith the user or emulate the user and need to clear the current session. you can store this byte stream in newly created session as a session veriable and it is so simple to retrive the old session data from that byte stream. This is very useful when you are using SQL memebership provider and maintaining signin and signout using cookies.
25 Jan 2008, 08:48:00   Source: Backup and Restore Session in .Net 2.0   Tags: Examples ASP.NET

WPF Master Pages

One of the really great enhancements in ASP.NET was the introduction of master pages. They help developers to create a consistent layout for the pages in an application. Unfortunatly there is no such concept in WPF. But there is an easy way to build a control similar to an ASP.NET master page.
21 Jan 2008, 13:57:00   Source: WPF Master Pages   Tags: GUI Examples

Simple Column Chart Generator

This article shows how to generate some column chart images for your users on a easy way. You can simply give some arguments to the class library and receive back an image object, or directly save it on hard disk.
18 Jan 2008, 18:02:00   Source: Simple Column Chart Generator   Tags: Graphics Examples

Implementing the .Net IComparer interface, to get a more natural sort order.

The IComparer available in .Net let you sort number or string. This little class available in both C# and VB shows how to implement an IComparer which will work with Mixed characters and numbers.
17 Jan 2008, 12:03:00   Source: Implementing the .Net IComparer interface, to get a more...   Tags: Examples

Net Spy: Your Network Spy With Logging System Using C#

This is a windows based tool to continuous monitor your shared folder in network and generated a log for different folder.
17 Jan 2008, 04:35:00   Source: Net Spy: Your Network Spy With Logging System Using C#   Tags: Examples