The Wayback Machine - https://web.archive.org/web/20120121055826/http://www.codeguru.com:80/vb/gen/vb_misc/algorithms/

    Algorithms

    Creating Your Own Encryption / Decryption Program Using VB.NET 2005

    With this article, I will try my best to assist you in protecting valuable information such as Passwords, account numbers and so on.

    [Updated] Sorting Algorithms In VB

    Cover a few of the better-known sorting algorithms with sample code for VB6.

    Compilers Demystified: Function Pointers in Visual Basic 6.0

    Learn how to enable VB6 applications to use function pointers and how to embed native code without using external DLLs.

    [Updated] Fuzzy Matching Demo in Access

    Dare to enter the world of approximate string matching with this introduction, tutorial, and Access 2000 database demo with a 99% precision/recall.

    [Updated] A Big Integer Package for Use in Visual Basic Written in Visual C++

    A 'How To' for creating a COM Big Integer Library that uses Visual C++ ATL Wizard and Wei Dai's Crypto++ Library.

    [Updated] Anti-Aliased Image Rotation (Aarot)

    Rotate images using geometry.

    Create a Custom Application Block That Decouples Your Code

    Implement Paul Kimmel's Radio pattern to separate internal messaging within an application. Along the way, you'll learn how to create a reusable custom application block for the same purpose.

    "Search and Replace" in Visual Basic Applications

    Implementing "Search and Replace" functionality in your VB application is very easy. The straightforward and to-the-point algorithm that I developed for this will make it easier for you to understand it.

    Prime Programming Proficiency, Part 3: Lines-of-Code Counter

    You can track the number of projects, files, and lines of code in any given solution implemented with VS.NET. Just invoke a built-in, lines-of-code counter in VS.NET and implement it as a macro that other teams can share.

    Selecting a Geometrical Object

    Learn about a method of selecting a geometrical object which is described by its vertices. This article might be of use if you are creating 2D or 3D shape related software.

    How Visual Basic 6 Stores Data

    This article describes how VB 6 stores Bytes, Booleans, Integers, Longs, Singles, Doubles, Strings (Fixed- and Variable-Length), Currencys, Dates, Variants, Arrays and UDTs.

    VB .NET Tip: Encryption in Just Twelve Lines of Code!

    If you don't want the overhead or complexity of a government-standard encryption technique, there is a simple solution.

    Creating a Transposition Table

    Use a transposition algorithm in Visual Basic. Using any text, the algorithm produces every permutation possible. (The article, demo project, and source code were updated.)

    Permutations in Visual Basic -- Generating All Possible Combinations

    Generating all possible combinations of a string in Visual Basic.