M
mannyGonzales
Hey guys,
Very common task: read a csv file. My data reads as:
"1","2","3",
my code reads this way:
While filename.Peek > -1
instr = filename.ReadLine
indata = Split(instr, ",")
End While
Problem: my values are coming out as ""1""
What's my solution?
Thanks
Very common task: read a csv file. My data reads as:
"1","2","3",
my code reads this way:
While filename.Peek > -1
instr = filename.ReadLine
indata = Split(instr, ",")
End While
Problem: my values are coming out as ""1""
What's my solution?
Thanks