.NET news » VB.NET VB.NET Rss Feed

Pro VB 2008 and the .NET 3.5 Platform (Windows.Net)
Author: Andrew Troelsen
Average rating: 4.5 / 3
(3 reviews)
More .NET VB.NET books
download
Everyday Use of Generics

If you ever use arrays or ArrayLists in your applications, consider using the built-in generics collections instead. The built-in generics collections are not only easier to use than arrays, but they allow you to limit the data type of the items that are in the collection. This provides type-safety, meaning that a compile-time error is generated if the code attempts to put something in the collection that is not of the correct type. It can also improve the performance of the application, limiting conversion of data types...

1 Mar 2007, 18:00:00   Source: Everyday Use of Generics   Tags: VB.NET
Build a Photo Viewer Using the New FTP Classes in .NET 2.0
Yet another highly useful but underappreciated feature of .NET 2.0? How about the FTPWebRequest and FtpWebResponse classes? These nifty classes let you built FTP file access right into your applications. See how it's done with this handy photo viewer example.
DotNet Real Tree
A simple progam to drawing fractal Trees
11 Jan 2007, 15:04:00   Source: DotNet Real Tree   Tags: Graphics VB.NET
Working with the Web Browser Control in Visual Studio 2005 - IE7Clone.
Example application working with the VS2005 Web browser control
Visual Basic .NET Types Explained
Learn about VB.NET data types, variable naming, default values according to type, and access levels.
10 Dec 2006, 06:18:06   Source: Visual Basic .NET Types Explained   Tags: VB.NET
Securing Text Data in .NET
Discussion of securing text in an application. The example project contains a SecureString wrapper to make working with SecureString easier, and a textbox that directly manipulates a SecureString.
7 Dec 2006, 23:54:00   Source: Securing Text Data in .NET   Tags: Security VB.NET
Advanced Basics: TableLayoutPanels
This month Ken Getz writes a demo-creation system for Windows-based applications, which he calls a switchboard.
14 Nov 2006, 19:00:00   Source: Advanced Basics: TableLayoutPanels   Tags: VB.NET
Beautify Your UIs with Perfect Pen and Brush Control
Spice up your interfaces by taking full advantage of the Pen and Brush classes capabilities in the .NET Framework. Learn to create dashed and striped lines, control line joins, and use brushes to create interesting patterns and gradients.
18 Oct 2006, 17:53:49   Source: Beautify Your UIs with Perfect Pen and Brush Control   Tags: Graphics VB.NET
Gain Access To DataGridView Canned Controls
How to gain access to the DataGridViewComboBoxEditingControl's properties, methods and events.
5 Oct 2006, 14:43:00   Source: Gain Access To DataGridView Canned Controls   Tags: Examples VB.NET
A Filter Dialog for a DataGridView
This is a dialog window that allows filtering a datagridview. It can build filters with any depth of parentheses.
28 Sep 2006, 15:36:00   Source: A Filter Dialog for a DataGridView   Tags: Database VB.NET