Posts by andremiotto • 18 points
3 posts
-
0
votes2
answers920
viewsA: How to allow only numbers in an Edit?
You could use the component TNumberBox. It is possible to delimit a crease operation (min-max), as well as validate only integers or allow real numbers. Follows the description of the component…
-
0
votes2
answers553
viewsA: How to load a Combobox in Firemonkey for Android
You can do it this way: Combo.Items.AddObject('descricao', TObject(id)); To recover the id of the selected item in the combo: id := Integer(Combo.Items.Objects[Combo.ItemIndex]); And to change the…
-
-1
votes1
answer271
viewsQ: Android Firemonkey virtual keyboard repeating words
We have an Android app that is experiencing typing problems after sending a message. The problem happens when we try to insert a new message, after typing the first character, Tmemo automatically…