Category Archives: Visual Basic 6 (VB6)

Install VB6 on Windows 7

After surfing around the net, I’ve found very little information regarding installation of VB6 on Windows 7. Most of the information out there is for Vista, and most of it is queries for assistance.

Better App.Path Function

App.Path returns a string with the “\” character at the end if the path is the root drive (e.g., “C:\”) but without that character if it isn’t (e.g., “C:\Program Files”). Most of the time we need the “\” at the end, so this function saves you the inconvenience of adding it every time.

The differences between Get, Set and Let

One question a VB programmer is asked a lot about, especially in a job interview, is the differences between let, set, and get.  Now some of the advanced programmers out there might laugh, but you”d be surprised at how many beginning developers trip up on this.  I”ve asked the question of interviewees myself.  So, in hopes of helping out budding programmers,… Read More »

Extended Color Constants

Get some extended color constants. Stuff like vbWhite, vbBlue are great, but even better is vbDarkGreen, vbPaleBlue etc… Original Author: CodeJack Assumptions I ran across this little tid-bit and thought it would be usefull to others. I can’t remember where I got it, but I’ve had it for a looonggg time. Code Public Enum exColorTypes ‘vbWhite = &HFFFFFF… Read More »