[Gambas-user] Problem with lcdnumber - don't show decimal point
sbungay
sbungay at ...981...
Thu Feb 8 22:32:44 CET 2007
Hmmm looks like you're tryiong to push the string "." tp the LCD
control... that won't work. It will display a decimal point though, so
if you entered the value "12.83" into a string and then perform a
LCD.Value = Cfloat(String) it will work fine.
Steve.
jj at ...1636... wrote:
> Hi All!
>
> I've created a display for a Point of sale, but when I
> press the point decimal, the display with lcd number not show the
> decimal.
>
> This is the code for the display button (click event).
>
> --------
> PUBLIC SUB botones_display_Click()
>
> SELECT CASE LAST.get_action()
> CASE "C"
> TPV.display.Value = 0
>
> CASE "0" TO "9"
>
> IF Len(CString(TPV.display.Value)) < 10 THEN
> TPV.display.Value = TPV.display.value & CFloat(LAST.tag)
> END IF
>
> CASE "."
>
> IF (InStr(CString(TPV.display.Value), ".") = 0) THEN
> TPV.display.Value = TPV.display.Value & "." --> DONT WORK!
> END IF
> ....
>
> it's possible show "1.0" in the lcdnumber?? and "1."?? I can do this?
> how?
>
> thank you!!
>
>
> -------------------------------------------------------------------------
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job easier.
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> _______________________________________________
> Gambas-user mailing list
> Gambas-user at lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gambas-user
>
More information about the User
mailing list