Posts by Mobius one • 41 points
6 posts
-
1
votes1
answer217
viewsA: Error(Bitmap size Too big) when using Timage in thread firemonkey android
Try to line up the thread then: TThread.Queue(nil, procedure begin img.Bitmap.LoadFromStream(imagem); converte_jpg(img.Bitmap,thumb_img); end); A simple alternative that solves Blobs' memory…
-
0
votes3
answers514
viewsA: Listview Event Error ( Listview1updateobjects ), to show or hide item. ( Delphi firemonkey )
The problem is this: this Listview is connected in a main Fdmemtable, when I load the Fdmemtable with the data initially, everything works fine, and in another step I add more records to the main…
-
1
votes1
answer128
viewsA: Example Delphi scrollform is not working in version 10.2
I don’t know if you already solved, but whenever I need to handle Android keyboard I use the Unit uKBForm available in the repository here:…
-
1
votes2
answers2189
viewsA: Edit Currency Delphi Firemonkey
Use in the event onTyping Edit the section below that will solve for you: TThread.Queue(nil, procedure var txt, txt2: string; x: integer; begin txt := Edit1.Text; txt2 := ''; for x := 0 to…
-
1
votes2
answers403
viewsA: Why does the app close when I click edit1?
First some code improvements to avoid future headaches: If you use firemonkey, from here: procedure Tformadhor.FormClose(Sender: TObject; var Action: TCloseAction); begin action :=…
-
0
votes0
answers28
viewsQ: FK Ismatch sqlite
Good afternoon I have an error of FK Ismatch on Sqlite that is already bothering me but I can not see the problem, follows the skeleton of the bank: CREATE TABLE CEST_Item ( CIT_ID integer primary…