Category Archives: Visual Basic 6 (VB6)

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 »