[futurebasic] Re: [FB] Double into Edit Field

Message: < previous - next > : Reply : Subscribe : Cleanse
Home   : January 2001 : Group Archive : Group : All Groups

From: BMichael@...
Date: Tue, 9 Jan 2001 05:38:09 EST
>How might I easily trim a value of say,   45.32475718  to be just 45.33 or
>so for placing into an edit field?

short = ((long * 100) + .5) / 100

Bill