I have set my text boxes to "NONE" as the input type so that the emulator's keypad doesn't obscure where data is entered. I don't have a device to check it on but wonder what a user will be able to do on their actual device under this scenario.
Would I be able to restrict the use of decimal numbers for an evaluation version by selecting "NUMBERS" as the input type? The emulator won't
allow decimal numbers. Will a device?
Last question:
Why the difference?
Thank you.
Jim Schuchert
Would I be able to restrict the use of decimal numbers for an evaluation version by selecting "NUMBERS" as the input type? The emulator won't
allow decimal numbers. Will a device?
Last question:
B4X:
Dim x,y,aa As Double
x=main.dblbch
y=dblhyp
[color=red]aa=x/y[/color]
txtclosure.Text =txtclosure.Text & " Perimeter Length = " & _
NumberFormat2(main.dblBch, 0,5,5,False) & CRLF & _
"Precision of closure = 1 in " & [color=red]x/y [/color]& CRLF <<<<<<< throws syntax error
"Precision of closure = 1 in " & [color=red]aa[/color] & CRLF <<<<<<<<this works
Thank you.
Jim Schuchert