Is there a way to convert a standard numeric value to a floating point (double) value in xHarbour?
Best regards,
Klaas den Dekker
Is there a way to convert a standard numeric value to a floating point (double) value in xHarbour?
Best regards,
Klaas den Dekker
Klaas,
This should be enough:
local n := 10
MsgInfo( n * 1.0 )
Thx Antonio, works great!