read values from multi-dimensional array
I am reading registry values, which are returned in a multi-dimensional array.
I can debug.print to see the values just fine, but what I would like to do is add these values to a comma delimited string.
Any ideas how I can do this?
Here's the code
VB Code:
If Len(mstrSystem) <> 0 Then
strRegSettings = GetAllSettings(mstrSystem, "Options")
For i = LBound(strRegSettings, 1) To UBound(strRegSettings, 1)
Debug.Print strSettings(i, 0), strSettings(i, 1)
Next i
End If