.NET news » Examples Examples Rss Feed

download

Lazy parenting with Microsoft Speech SDK

A little program to exercise children math skills.
31 May 2007, 15:18:00   Source: Lazy parenting with Microsoft Speech SDK   Tags: Examples Multimedia

A simple C# global low level keyboard hook

A simple description and sample of creating a global low level keyboard hook in C#
30 May 2007, 20:28:00   Source: A simple C# global low level keyboard hook   Tags: Examples

Simple Ping Utility with GUI

This article demonstrates usage of the Ping class located in the System.Net.NetworkInformation namespace. It can help network administrators or others who need to monitor their servers and connections.
23 May 2007, 12:59:00   Source: Simple Ping Utility with GUI   Tags: Examples Internet

Fully themed Windows Vista Controls

This article is about getting controls found in Windows Vista to make use of the new Windows Vista user interface. Included in the project are some components (Commandlinks, ImageButton, SplitButton) that work just like the Windows Vista themed controls. The article would aim to achieve most of the interface effects (like the fade-in/out) effects seen throughout Windows Vista.
20 May 2007, 02:04:00   Source: Fully themed Windows Vista Controls   Tags: Examples GUI

Simple Speech Recognition

One of the coolest features to be introduced with Windows Vista is the new built in speech recognition facility. To be fair, it has been there in previous versions of Windows, but not in the useful form in which it is now available. Best of all, Microsoft provides a managed API with which developers can start digging into this rich technology. For a fuller explanation of the underlying technology, I highly recommend the Microsoft whitepaper. This tutorial will walk the user through building a common text pad application, which we will then trick out with a speech synthesizer and a speech recognizer using the .Net managed API wrapper for SAPI 5.3. By the end of this tutorial, you will have a working application that reads your text back to you, obeys your voice commands, and takes dictation.

19 May 2007, 11:58:00   Source: Simple Speech Recognition   Tags: Examples Multimedia

Detect Encoding for in- and outgoing text

In some cases you need to know what the best codepage (encoding) is to either transfer text over the internet or store it in a text file. One could argue that Unicode always does the trick but I needed the most efficient (byte saving) way to transfer data.

Detecting a code page from text is a very tricky task. But luckily, Microsoft provides the MLang API, in which the IMultiLang3 interface is used for outbound encoding detection.

Similarly, the IMultiLang2 interface has a function to detect the encoding of an incoming byte array. This is very handy for codepage detetion of text stored in files or for text that needs to be sent over the internet..

18 May 2007, 15:12:00   Source: Detect Encoding for in- and outgoing text   Tags: Examples

Microsoft Office SharePoint 2007 and ASP.NET 2.0 AJAX 1.0 Web Part

A simple SharePoint 2007 web part to calculate two numbers which supports ASP.NET 2.0 AJAX 1.0

Simon: memory game from the eighties

Simple memory game that uses shaped buttons.
11 May 2007, 10:13:00   Source: Simon: memory game from the eighties   Tags: Examples Graphics

Universal Remote Control with PDA

"Universal Remote Control" application for PocketPC (Windows Mobile 3.0 and later) implemented in C#.
10 May 2007, 14:38:00   Source: Universal Remote Control with PDA   Tags: Examples Mobile

Advanced UxTheme wrapper

How to use (and understand) visual style for custom controls with a C# wrapper for the uxtheme.dll
6 May 2007, 16:37:00   Source: Advanced UxTheme wrapper   Tags: GUI Examples