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:
  1. If Len(mstrSystem) <> 0 Then
  2.    strRegSettings = GetAllSettings(mstrSystem, "Options")
  3.                
  4.    For i = LBound(strRegSettings, 1) To UBound(strRegSettings, 1)
  5.       Debug.Print strSettings(i, 0), strSettings(i, 1)
  6.    Next i
  7. End If