VB6 Tutorial 29: Form Templates
In this lesson, I’ll show you how you can use form templates in order to make your project work easier.
In this lesson, I’ll show you how you can use form templates in order to make your project work easier.
Before a form becomes fully functional, a series of form events is invoked one by one when you run your program. In this lesson, we’ll discuss those events. If you need information about common events for most controls, see the lesson on Common events. Initialize The Initialize event is the first event of a form when the program runs.… Read More »
In this lesson, I’ll discuss a very important part of the VB6 IDE, the Object Browser. Understanding the Object browser is essential if you are curious about all the libraries, functions, objects and practically everything of the language.
This section discusses the control flow functions such as IIf, Choose and Switch functions.
This VB6 lesson is about the common events that give life to event driven programming.
Today I’ll show you the usage of PictureBox and Image controls.
This lesson gives you a short description about the graphical style property of the OptionButton and CheckBox controls. This feature gives a graphical flavor to these controls. Its use has been demonstrated through sample programs.
In this lesson, I’ll give you an overview of the CheckBox control in VB6. This is a powerful tool in the Visual Basic 6 IDE.
Have a look at some interesting features of the OptionButton and Frame controls in Visual Basic 6.
In this lesson, I’ll take you through the For Loop structure with a couple of simple code examples. Undoubtedly the For…Next loop structure is the most useful among others.