Category Archives: Visual Basic 6 (VB6)

How to Install VB6 on Windows 10 or 11

So if you don’t know it, the technical preview version of Windows 10 is available. Being the good maintenance guy, you’ll want to know about installing VB6 on Windows 10. This article shows how I got it running on Microsofts latest OS. I won’t run down the list of getting Windows 10 installed. If you’re able to grab… Read More »

Get Available Drivespace with VB6

As a developer, from time to time you are called upon to build or process large chunks of data. During this process, you can use the the local hard drive as a temporary holding area. Admittedly, with todays well-specc’d computers, you shouldn’t need to do this, but back in the day, this was the norm. By request, here… Read More »

Compare Two Files in VB6

This function will allow you to compare one file to another. It will do either a lax check (compare file lengths only) or a stringent check (a byte by byte comparison). Pretty straightforward demonstration of string handling for Visual Basic 6, posted by request. Public Function AreTheyTheSame(ByVal File1 As String, _ByVal File2 As String, Optional StringentCheck As _Boolean… Read More »

PortInUse

Working with network objects in Visual Basic can be a little daunting for newer programmers. It’s not that scary, really.

Calculate Subnet Mask Function

Most developers don’t have much of a clue about network fundamentals. What may be a simple thing for a network engineer or system administrator may leave a developer simply scratching his or her head.

Install VB6 on Windows 8

As most of the world knows, Microsoft has made available a consumer preview of Windows 8. While this is still considered beta software, I highly recommend you check it out. Some of us technology minded folks are charged with supporting legacy software, developed with Visual Studio 6 (particulary Visual Basic 6), and with the iminent release of Windows… Read More »

Introduction to VB6 Variable Types

Variables provide temporary storage for information that will be needed during the lifespan of the computer program (or application).  This article is short reference table of the types of variables used in programming.