

xorpas
Members-
Content Count
15 -
Joined
-
Last visited
Community Reputation
1 NeutralRecent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
vcl 260.bpl n'est pas conçue delphi 10.3.3 update3
xorpas replied to xorpas's topic in Delphi Third-Party
Thank you Architect -
vcl 260.bpl n'est pas conçue delphi 10.3.3 update3
xorpas replied to xorpas's topic in Delphi Third-Party
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 -
vcl 260.bpl n'est pas conçue delphi 10.3.3 update3
xorpas replied to xorpas's topic in Delphi Third-Party
I use the .ISO installer The length of the path environment variable can be a problem How can Change it -
vcl 260.bpl n'est pas conçue delphi 10.3.3 update3
xorpas replied to xorpas's topic in Delphi Third-Party
I f you Have this two File I need them to replace in my path -
vcl 260.bpl n'est pas conçue delphi 10.3.3 update3
xorpas replied to xorpas's topic in Delphi Third-Party
1)yes ,vcl260.bpl exists. 2) Yes it have a "valid size". 3) No 4) I d'ont Knew -
vcl 260.bpl n'est pas conçue delphi 10.3.3 update3
xorpas replied to xorpas's topic in Delphi Third-Party
The same problem -
vcl 260.bpl n'est pas conçue delphi 10.3.3 update3
xorpas replied to xorpas's topic in Delphi Third-Party
Thank you MR Lars Fosdal I will reinstall Now I hope it work -
Hi I try to install 10.3.3 update3 when install finished Start it and have this message vcl 260.bpl n'est pas conçue how resolve it? thank you.
-
Create a new Animate from listviewitem PlaceOffset not work How do it ?
xorpas replied to xorpas's topic in FMX
Thank you MR Lars Fosdal -
Create a new Animate from listviewitem PlaceOffset not work How do it ?
xorpas replied to xorpas's topic in FMX
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 -
Create a new Animate from listviewitem PlaceOffset not work How do it ?
xorpas replied to xorpas's topic in FMX
Thank 's for replay I want to change a position X and Y of item in listview from position.X = -56 to position.X = 144 and position.Y = 16 to position.Y =96 More Explain in image Hier -
Create a new Animate from listviewitem PlaceOffset not work How do it ?
xorpas replied to xorpas's topic in FMX
No one Knew about this issue!!!! -
Create a new Animate from listviewitem PlaceOffset not work How do it ?
xorpas replied to xorpas's topic in FMX
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; -
Create a new Animate from listviewitem PlaceOffset not work How do it ?
xorpas replied to xorpas's topic in FMX
Any idea Please -
Create a new Animate from listviewitem PlaceOffset not work How do it ?
xorpas posted a topic in FMX
Hi I have a problem to animate an item in listview in the PlaceOffset ,How can Do it Like This image Thank's