The Wayback Machine - https://web.archive.org/web/20110723185808/http://www.codeguru.com:80/vb/
Survey

    Latest Visual Basic Articles

    Input and Output with VB.NET 2010

    The .NET runtime has everything you need to format your output and handle special characters. Both Visual Basic 2010 Express edition and Visual Studio 2010 help you with Intellisense if you can't remember the syntax. This article explores simple console input and output and shows you how to get it done.

    VB.NET Data Types

    Understanding data and how it is represented is key to making use of it in a program. This article walks thru VB.NETbs standard data types and talks about how to make use of them.

    Controlling Program Flow in Visual Basic 2010

    VB.NET provides a solid set of programming tools to implement flow control. VB.NET 2010 includes the For Each construct, making it possible to easily iterate over a list of items with little to no extra coding. This article examines the different VB.NET keywords and gives examples of how they're used.

    Modules, Classes and Namespaces in VB.NET

    Visual Basic .NET 2010 is a fully functional Object Oriented Programming language providing access to the full complement of .NET 4.0 features. Understanding what a Namespace is and how it relates to Classes and Modules will lay a good foundation for understanding the language as a whole.

    Guide to Building a VS 2008 User Control in VB

    Quite often we need a VB control that has requirements that don't quite exist within the current control set, such as all data-entry controls be on a single page with scroll bars. Read on to learn more...

    Animation In Visual Basic .NET: Interacting with Objects

    Discover how to Interact with the objects on a playing field. The article uses a game as a base for the code.

    Latest Columns

    Using VC++ .NET

    USING VC++ .NET

    Faster Microsoft C++ Programming With The MFC Class Wizard

    During the glory days of MFC and ATL in the 1990s and early 2000s, The Visual C++ class wizard was a highly-used and useful IDE tool that simplified life for developers. The re-introduction of the class wizard, after the absence of a decade, demonstrates commitment to the 'glory day's' ideal and adds simplicity to class management tasks inside the IDE.

    Nuts & Bolts

    .NET NUTS & BOLTS

    .NET Framework: Collections and Generics

    The original release of the .NET Framework included collections as .NET was introduced to the Microsoft programming world. The .NET Framework 2.0 introduced generics to complement the System.Collections namespace and provide a more efficient and well performing option. Read on to learn more...

    VB Today

    VISUAL BASIC TODAY

    Input and Output with VB.NET 2010

    The .NET runtime has everything you need to format your output and handle special characters. Both Visual Basic 2010 Express edition and Visual Studio 2010 help you with Intellisense if you can't remember the syntax. This article explores simple console input and output and shows you how to get it done.

    Insights

    PROGRAMMING INSIGHTS

    .NET Task Parallel Library Advanced Data Parallel

    Much of the .NET Task Parallel Library (TPL) Data Parallel functionality is encapsulated in Parallel Loops. Unlike a regular loop, Parallel loops must partition a collection, requiring a developer to address concurrency issues like cancellation and thread safe operations. This article introduces the TPL Data Parallel core classes and concepts.