
02-28-2007, 12:33 PM
|
 |
Junior Contributor
|
|
Join Date: Jan 2004
Location: San Antonio, Texas
Posts: 203
|
|
I added the following to the Form_Load event of my vb.net application and I was able to change the value at index 1.
I guess I do not understand what your issue is.
Code:
Dim _data As String
Dim _dataValuesPrimary As String()
_data = "0,343,Hello,XXX"
_dataValuesPrimary = Split(_data,",")
MsgBox("Legth=" & _dataValuesPrimary.Length())
_dataValuesPrimary.SetValue("300", 1)
MsgBox("Index 0=" & _dataValuesPrimary(1))
|
__________________
I need an exterminator for all these bugs!
brillo
|