VB6 Tutorial 65: Storing Code in a Module

Visual Basic 6 stores its code in the form of module that makes your program more structured. So its very important to learn about it. Before you start Its recommended that you first have the concepts of scope, procedure,functions and multiple forms. The following lessons are helpful. What is a module? Module is a separate code file in… Read More »

VB6 Tutorial 64: The Screen Object

One of the objects you can work with in VB6 is the Screen object. This will allow you to find information about the current screen configuration, which will in turn allow you to position your forms and other output in the correct position on the users screen, regardless of the current resolution or dpi settings.

VB6 Tutorial 63: MDI Forms

This lesson discusses how to work with MDI forms in Visual Basic 6. A sample program has been given at the end of this lesson to enable the learners to quickly understand the concepts of MDI forms.

VB6 Tutorial 62: Splash Screen

You can use splash-screen in your windows app to make the program more attractive. The splash screen is a form template which you should set to appear before the main window, or the actual program appears.

VB6 Tutorial 61: Multiple Forms

In Visual Basic 6, a windows application may have more than one window. Most of the Windows applications contain several windows. You can make a multiple windows software by adding some forms to your project as because forms are nothing but the windows of the final product.