incendio Well-Known Member Licensed User Longtime User Jul 5, 2015 #1 Hi guys, I have a number 58629599.98 returning from RDC but it is always return as 5.86296E7. How to return it as a normal number without 'E' format? Here are my codes B4X: Private Ttl As Float 'or Double Private Rec() As Object Rec = result.Rows.Get(0) Ttl = Rec(6) '58629599.98 always return as 5.86296E7 Thanks in advance.
Hi guys, I have a number 58629599.98 returning from RDC but it is always return as 5.86296E7. How to return it as a normal number without 'E' format? Here are my codes B4X: Private Ttl As Float 'or Double Private Rec() As Object Rec = result.Rows.Get(0) Ttl = Rec(6) '58629599.98 always return as 5.86296E7 Thanks in advance.
incendio Well-Known Member Licensed User Longtime User Jul 5, 2015 #2 Never mind, I used numberformat2 to format the display. Upvote 0
ArminKH Well-Known Member Jul 5, 2015 #3 incendio said: Hi guys, I have a number 58629599.98 returning from RDC but it is always return as 5.86296E7. How to return it as a normal number without 'E' format? Here are my codes B4X: Private Ttl As Float 'or Double Private Rec() As Object Rec = result.Rows.Get(0) Ttl = Rec(6) '58629599.98 always return as 5.86296E7 Thanks in advance. Click to expand... you can use String instead Float Upvote 0
incendio said: Hi guys, I have a number 58629599.98 returning from RDC but it is always return as 5.86296E7. How to return it as a normal number without 'E' format? Here are my codes B4X: Private Ttl As Float 'or Double Private Rec() As Object Rec = result.Rows.Get(0) Ttl = Rec(6) '58629599.98 always return as 5.86296E7 Thanks in advance. Click to expand... you can use String instead Float