Top "Vb6" questions

Visual Basic 6.0 (VB6) was the final COM-based version of the VB programming language and IDE, last updated in 2004.

Does VBA have Dictionary Structure?

Does VBA have dictionary structure? Like key<>value array?

vba dictionary data-structures vb6
VBA array sort function?

I'm looking for a decent sort implementation for arrays in VBA. A Quicksort would be preferred. Or any other sort …

arrays sorting vba vb6 ms-project
How do I resolve "Run-time error '429': ActiveX component can't create object"?

My company has a VB6 application using Crystal Reports 7 which a client has asked to be installed on Windows 7 32 bit. …

dll vb6 windows-7 activex ocx
Installation of VB6 on Windows 7 / 8 / 10

I have been having problems installing VB6 on Windows 7. I realize it is a legacy IDE and my research on …

windows-7 vb6 installation legacy legacy-code
VB6 IDE cannot load MSCOMCTL.OCX after update KB 2687323

After windows update installed security update KB2687323, my VB6 project fails to load. Displayed error message is "'[project_vbp_…

vb6
What is the difference between dim and set in vba

Pardon me as am a newbie in VBA. Sometimes I use Dim r as Range r = Range("A1") Other times …

excel vba vb6
Difference between Visual Basic 6.0 and VBA

What is the difference between the two. I always thought VBA is somewhat 'crippled' version of VB, but when a …

vba vb6
Add newline to VBA or Visual Basic 6

I want to concatenate two strings with a linebreak between them. st = "Line 1" + newline + "Line2" How do I add a …

vba vb6
ReDim Preserve to a Multi-Dimensional Array in Visual Basic 6

I'm using VB6 and I need to do a ReDim Preserve to a Multi-Dimensional Array: Dim n, m As Integer …

arrays multidimensional-array vb6 dynamic-arrays