README.md

December 4, 2022 ยท View on GitHub

Passing a control array

Description

Working with control arrays in VB3 was frustrating, but with VB4 you can pass a control array as an argument to a function. Simply specify the parameter type as Variant:

More Info

Submitted On
ByVB Pro
LevelUnknown
User Rating4.3 (171 globes from 40 users)
CompatibilityVB 4.0 (16-bit), VB 4.0 (32-bit)
CategoryMiscellaneous
WorldVisual Basic
Archive File

Source Code

Private Sub Command1_Click(Index As Integer)
GetControls Command1()
End Sub
Public Sub GetControls(CArray As Variant)
Dim C As Control
For Each C In CArray
MsgBox C.Index
Next
End Sub
Also, VB4's control arrays have LBound, Ubound, and Count properties:
If Command1.Count < Command1.Ubound - _
Command1.Lbound + 1 Then _
Msgbox "Array not contiguous"