.NET news » Examples Examples Rss Feed

iPhone: The Missing Manual
Author: David Pogue
Average rating:  / 0
(0 reviews)
More .NET Examples books
download

Context menu for the custom properties in the C# PropertyGrid

Context menu for the custom properties in the C# PropertyGrid allowing the user to reset the properties, the same way as in Visual Studio.
29 Jan 2006, 14:13:00   Source: Context menu for the custom properties in the C#...   Tags: Examples C#

Web control to generate database design documents in HTML

Just 200 lines of VB.NET to document your SQL Server databases.

Print Html in C# with or without webbrowser control and print dialog

Printing Html in C# with or without webbrowser control and windows default print dialog.It also implements HTMLDocumentClass,IHTMLDocument2 and IHTMLDocument4 interfaces of MSHTML.
24 Jan 2006, 12:14:00   Source: Print Html in C# with or without webbrowser control and...   Tags: C# Examples

Teach Your Old Web Cam New Tricks: Use Video Captures in Your .NET Applications

Just when you thought there wasn't anything new that you could do with a webcam, along comes this article, which shows you how to exploit the AVICap Windows class so you can integrate on-demand screen captures into your applications.

File System Enumerator using lazy matching

An efficient solution for finding files.
21 Jan 2006, 00:30:00   Source: File System Enumerator using lazy matching   Tags: Examples C#

Cryptor - Encrypt Files With Rijndael 256 bit

A simple utility for encrypting files using 256 bit Rijndael (AES). Also, adds menu items to Windows Explorer's file context menu for easy access.
20 Jan 2006, 19:04:00   Source: Cryptor - Encrypt Files With Rijndael 256 bit   Tags: Examples VB.NET Security

WebGrid - The plug and play grid

Discover how easy it can be to build browser-friendly HTML from your datasources with WebGrid. Maintaining a datasource is plug and play with WebGrid. Set a few properties and WebGrid will generate a browser friendly data form, and handle all database interaction for insert, update, and datasource delete using safe parameterized queries generated by the grid. A user friendly system message is generated if user input is not valid.
17 Jan 2006, 01:11:23   Source: WebGrid - The plug and play grid   Tags: Components Examples

Invoking Asynchronous Tasks in ASP.NET 2.0

Invoking multiple tasks that are slow or lengthy always poses a challenge in front of developers. Normal approach is to develop a multithreaded component and delegate the tasks to it. In ASP.NET 1.x there was no direct support at web form level for executing such tasks in asynchronous manner. ASP.NET 2.0 on the other hand allows you to execute tasks asynchronously from within the web form itself. This article explores the two possible approaches with examples.
1 Jan 2006, 02:00:00   Source: Invoking Asynchronous Tasks in ASP.NET 2.0   Tags: ASP.NET Examples

How To : Create a Dynamic Time Table in ASP.NET

There will be many times where you will need to have a time table in your applications. This articles discusses on the same.
27 Dec 2005, 10:47:52   Source: How To : Create a Dynamic Time Table in ASP.NET   Tags: ASP.NET Examples

How to : Get Excel data into a .NET DataSet object

There may be requirement where in data in an Excel sheet has to be manipulated inside .NET Applications. Although there are many ways to achieve this (like using Excel object of COM), the most preferred way is to use the .NET Data providers to achieve this. This article discusses on the same.
22 Dec 2005, 11:12:42   Source: How to : Get Excel data into a .NET DataSet object   Tags: Examples