Posts by Jean Coelho • 1 point
2 posts
-
0
votes2
answers430
viewsA: Delete Tedit created at runtime
Try this: while (Form1.ComponentCount > 1) do begin if (Form1.Components[0] is TEdit) then TEdit(Form1.Components[0]).Free; end;
-
0
votes0
answers461
viewsQ: Canvas Draw Tbitmap Multiple Images
Would you like to capture several images and "join" them all in one without having to save them first, I capture 6 images put one over the other according to the position on the screen and saved in…