I read a CSV into a DataSet that contains digits that should be stored as String.
Example..
adus,088606108,12.00
When I read the data back using the following code
strMsg = ds.Tables(0).Rows(1)(1)
It drops the leading 0 and becomes 88606108
Reading this line
adus,05545e209,12.00 becomes 5.545E+212
How do I keep the data as a string?
Example..
adus,088606108,12.00
When I read the data back using the following code
strMsg = ds.Tables(0).Rows(1)(1)
It drops the leading 0 and becomes 88606108
Reading this line
adus,05545e209,12.00 becomes 5.545E+212
How do I keep the data as a string?