This should be easy..
I have a datatable with a values like '1234.5'. When I convert that to a string it drops the decimal and becomes '1234'.
For Each row As DataRow In dt.Rows
myvalue = row("ColumnName").toString
'some other stuff with myvalue
Next
How can I make the output display what ever is in the cell as a complete string (including decimal numbers)? '1234.5'
thanks!