I have a piece of code:
Dim Latitude As Double = row("fltLatitude")
Dim Longitude As Double = row("fltLongitude")
Most of the lat/longs that are being fetched from the db using SP are retrieved in properly, except for a couple of records which do not include a period to indicate a lat/long value. I have tried using these:
Convert.ToDecimal(Latitude)
CDec(Latitude)
decimal.Parse(Latitude)
but none of them are working. Can somebody help me out? Thanks in advance