lynefitz
02-28-2007, 11:47 AM
Can someone tell me what I'm not seeing? I'm writing this using Microsoft Visual Basic .NET
I'm reading from a comma delimited file: 0,343,Hello,XXX
Dim _data As String
Dim _dataValuesPrimary As String()
_data = _vendorReader.Readline()
_dataValuesPrimary = Split(_data, ",")
(->splits the line into an array of strings each of which holds an item so _dataValuesPrimary(1) is 343)
What is not working is any of the methods associated with that array:
_dataValuesPrimary.length()
_dataValuesPrimary.setValue()
etc...
I'm trying to change the value to certain items in the array. What am I not seeing? =)
I'm reading from a comma delimited file: 0,343,Hello,XXX
Dim _data As String
Dim _dataValuesPrimary As String()
_data = _vendorReader.Readline()
_dataValuesPrimary = Split(_data, ",")
(->splits the line into an array of strings each of which holds an item so _dataValuesPrimary(1) is 343)
What is not working is any of the methods associated with that array:
_dataValuesPrimary.length()
_dataValuesPrimary.setValue()
etc...
I'm trying to change the value to certain items in the array. What am I not seeing? =)