Some tutorials just don't fit in any other category but are still very useful to you as a VB6 programmer. These tutorials are all kept in our Miscellaneous section of this site. Check them out, you might find some really useful ideas for your next great Visual Basic application.
When designing a program you will want to think through what standards you should use for yourself and your end users. This VB6 tutorial guides you through how to do this.
Developing a standard naming convention for all your Visual Basic objects and variables will make your code easier to understand and update down the road. This VB6 tutorial walks you through the best way of doing this.
Properly documenting your Visual Basic code will not only help you later as you make changes but it is also something that any professional developer must have a full grasp on.
Understanding how variables work is very important. Learn how Visual Basic handles scope and duration with this tutorial.
Visual Basic is a great language that can be used to create full featured applications. Learn how to optimize your code to create faster, more efficient, and user friendly applications.
There are many versions of Visual Basic to choose from. How do you decide which version to use? This guide will help you make this decision.
Visual Basic comes with a bunch of help files. These are great for reference, but they can also be used by the beginner to see samples and to begin learning. Learn the best way to go about this.
Some good advice as you start to learn Visual Basic, this tutorial introduces the VB6 IDE and helps the beginner think through how to start tackling this great programming language.
You knew you could create database apps with VB6 but this tutorial walks you through how you can create a Visual Basic Screen Saver. The sky is the limit once you learn how to do this.
Once you start learning how to create even slightly complex VB programs you will inevitably need to implement some basic error handling. This allows you to capture errors and handle them in a graceful way instead of having your fancy Visual Basic application crash and burn.
Many times, when programming, you need to know how to sort a bunch of items. One of the easiest ways to do this is to use an array and some of the built in VB6 functions. This Visual Basic tutorial shows you exactly how to do this!
This VB6 tutorial explains how you can easily search an array in Visual Basic. It gives examples of both serial (or linear) searches and binary searches.
This VB6 tutorial demonstrates how you can pass arrays to functions, how User Defined Type (UDT) arrays work, and how variant arrays work. It is a little more advanced then the beginner tutorial but is still very easy to follow.
Have you ever wanted to write your own scripting language? Learn how you can use Dynamic Classes to do just that. You can examine a class at runtime and use it for scripting.