

xorpas
-
Content Count
95 -
Joined
-
Last visited
Posts posted by xorpas
-
-
Thank you The problem is in the Host url I fixe it thank you
-
How to resolve TNetHTTPClient Maximum number of redirections (5) exceeded ?
-
-
On 2/5/2021 at 6:34 AM, Turan Can said:The problem is solved. I convert from the Java example.
Thanks. It only receives the form you send. Please check the picture above.How you solved this problem Can you put Your Code Hier ?
-
1
-
-
Thank you
Architect
-
Thank you not equal
Have you Direct Link Please I cant Download from this website https://cc.embarcadero.com/item/30896
I need delphi not c++ if can
-
I use the .ISO installer
The length of the path environment variable can be a problem How can Change it
-
I f you Have this two File I need them to replace in my path
-
-
4 hours ago, Lars Fosdal said:Uninstall, reinstall.
The same problem
-
-
-
-
I can do it without animation Like this
procedure TForm1.Button1Click(Sender: TObject); var item :TListViewItem; begin ListView1.Items.Clear; item:=ListView1.Items.Add; item.Data['Text1']:='Animate Me in postion x =136 y =256 '; // PlaceOffset.X:=8; // PlaceOffset.Y:=8; item.Objects.FindObjectT<TListItemText>('Text1').PlaceOffset.X:=136; item.Objects.FindObjectT<TListItemText>('Text1').PlaceOffset.y:=256; end; procedure TForm1.Button2Click(Sender: TObject); var item :TListViewItem; begin ListView1.Items.Clear; item:=ListView1.Items.Add; item.Data['Text1']:='Animate Me in postion x =8 y =8'; item.Objects.FindObjectT<TListItemText>('Text1').PlaceOffset.X:=8; item.Objects.FindObjectT<TListItemText>('Text1').PlaceOffset.y:=8; end;
But How can Do it With TFloatanimation
-
-
No one Knew about this issue!!!!
-
Is their a way ,Some thing Like this
var item:TListViewItem; txt:TListItemText; begin item:=ListView1.Items.Add; item.Data['Text1']:='hellow word'; txt:=ListView1.Items[0].Objects.FindObjectT<TListItemText>('Text1'); TAnimator.AnimateFloat(ListView1 , txt.PlaceOffset.X.ToString , 500, 1); // TAnimator.AnimateFloat(ListView1 , 'Position.x', 500, 1); end;
-
1
-
-
Any idea Please
-
Display a form created in Fmx ANDROID Many time
in FMX
Posted
H I
I Have an issue with fmx android when run app it display a form Created in the first click But not in the second click , It work perfectly in Windows but not in android
I use VertScrollBox as parent
this is my code
var f: TForm3; begin f := TForm3.Create(self); f.Layout1.Align := TAlignLayout.Top; f.TXTID.Text := ID; self.AddObject(f.Layout1); end;