Category Archives: Visual Basic 6 (VB6)

Search and Replace Demo

By request, this is a explanation and sample project for utilizing the built-in Replace function for VB6. Finding and replacing text within a string is relatively speaking one of the more common functions you’ll perform when working with text. Fortunately, VB6 has included some functions for easing the burden of working with text. One of these built-in functions… Read More »

File Logging Module

This is a simple module that will allow you to log events from within your program to a text file. This is more of a string handling demo, but could be useful as a starting point for something bigger. If you’re like me, you like to know what is going in your application. This information comes in handy… Read More »

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.