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

download

VDialog (Vista TaskDialog for Windows XP)

Vista-like TaskDialog control for .NET Framework 2.0, compatible with Windows XP
8 Apr 2008, 12:56:00   Source: VDialog (Vista TaskDialog for Windows XP)   Tags: GUI VB.NET

Visual Basic and Respect

Will VB's new LINQ to XML prowess finally gain it the community respect accorded to other mainstream languages?
24 Mar 2008, 13:29:46   Source: Visual Basic and Respect   Tags: VB.NET

What's New in Visual Basic 9.0? Part 2

The release of Visual Studio 2008 updates Visual Basic to version 9.0, with several key language enhancements and LINQ support. Part Two of this series will walk you through VB 9's new LINQ support features and other time-saving enhancements.
18 Mar 2008, 23:17:31   Source: What's New in Visual Basic 9.0? Part 2   Tags: VB.NET

What's New in Visual Basic 9.0? Part 1

The release of Visual Studio 2008 updates Visual Basic to version 9.0, with several key language enhancements and LINQ support. Part one of this series will walk you through using nullable types, type inference, the If operator, and other time-saving enhancements.
4 Mar 2008, 23:12:34   Source: What's New in Visual Basic 9.0? Part 1   Tags: VB.NET

Fall In Love with Visual Basic All Over Again in Visual Studio 2008

Discover anew why Visual Basic is one of the most successful programming languages in history by exploring some of the new features Microsoft added to Visual Studio and Visual Basic.
30 Jan 2008, 19:39:07   Source: Fall In Love with Visual Basic All Over Again in Visual...   Tags: VB.NET

XML Programming in Visual Basic 9.0

With Visual Basic 9.0, working with XML gets much easier for developers. Here's a look at some of the new features, including LINQ support, XML literals, embedded expressions, XML properties, and XML Schema IntelliSense.
17 Dec 2007, 18:00:00   Source: XML Programming in Visual Basic 9.0   Tags: XML VB.NET

A Screen Capture Utility

JPG Capture is a utility designed for the developers to capture the debugging screenshot, while it is also ideal for general screen capture purpose. JPG Capture can capture the desktop screen into picture files in sequence. Users can define the capture hotkey, capture area (Current window, Full screen or Rectangular area), picture format ( .jpg, .gif, and .bmp etc) and destination.
19 Oct 2007, 16:57:00   Source: A Screen Capture Utility   Tags: Examples VB.NET Graphics

3D Geometry Library (Basic Classes) and 3D Drawing using VB.Net

This article explains a 3D Geometry library developed using VB.Net

Type inference in Visual Basic 2008

In order to support Language Integrated Query (LINQ), a suite of new technologies was added to the upcoming release of Visual Basic 2008 that includes type inference. In earlier versions of Visual Basic, a member's type was assumed to be Object unless a different type was explicitly declared in code. A drawback to declaring a variable this way is that the compiler is only able to assume that the value of the variable will be of type Object. The experience for the developer is that IntelliSense is only able to display information for the members that are common to all Objects, though there may be other members available on the actual instance at run time. With late binding, the other members are bound at run time, which means they will not be verified in any way until it is time for the line to be executed. So, nonexistent members can be referenced in code, and the problem will not be caught by the compiler. This can easily result in a MissingMemberException and generally requires you to keep track of more information on your own...
21 Aug 2007, 19:00:00   Source: Type inference in Visual Basic 2008   Tags: VB.NET

Analog Clock Control

The Analog Clock control is a control that has almost all functionality that clock control can have and it is fully modifiable.
12 Jul 2007, 21:00:00   Source: Analog Clock Control   Tags: VB.NET Examples Graphics