biderius
07-20-2003, 12:16 PM
Hy
I want to store the width of the cols from a ListView in the registry.
How can I get an Array to a String without putting it in a For-each function.
I know I have the Spilt()- function to seperate the values from the Array, but how can I get it into this string?
I don't want to use this:
With Me.lstArtikel.ColumnHeaders
For i = 1 To .Count
sValues = sValues & .Item(i).Width
Next i
End With
I want to store the width of the cols from a ListView in the registry.
How can I get an Array to a String without putting it in a For-each function.
I know I have the Spilt()- function to seperate the values from the Array, but how can I get it into this string?
I don't want to use this:
With Me.lstArtikel.ColumnHeaders
For i = 1 To .Count
sValues = sValues & .Item(i).Width
Next i
End With