<?xml version="1.0" encoding="iso-8859-9" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Clomosy | Forum : Dinamik Bileşende işlem</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Clomosy ile de&#287;i&#351;ken kullan&#305;m&#305; : Dinamik Bileşende işlem]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 15 Apr 2026 04:35:45 +0000</pubDate>
  <lastBuildDate>Wed, 12 Nov 2025 17:37:02 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.07</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://forum.clomosy.com.tr/RSS_post_feed.asp?TID=1225</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Clomosy | Forum]]></title>
   <url>https://forum.clomosy.com.tr/forum_images/logo.png</url>
   <link>https://forum.clomosy.com.tr/</link>
  </image>
  <item>
   <title><![CDATA[Dinamik Bileşende işlem : void ChangeItemAmountV_Safe(APieces...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1225&amp;PID=2694#2694</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=257">Emr.Erkmn</a><br /><strong>Konu:</strong> 1225<br /><strong>Gönderim Zamanı:</strong> 12&nbsp;Kasım&nbsp;2025 Saat 17:37<br /><br /><div>void ChangeItemAmountV_Safe(APieces : Integer)</div><div>var</div><div>&nbsp; TempPieceLbl : TclProLabel;</div><div>&nbsp; TempButton: TclProButton;</div><div>&nbsp; labelName: String;</div><div>&nbsp; LPieceStr : String;</div><div>&nbsp; currentAmount: Integer;</div><div>{</div><div>&nbsp; Try</div><div>&nbsp; &nbsp; if (MainForm.ClSender == nil)</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; Exit;</div><div>&nbsp; &nbsp; }</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; TempButton = MainForm.ClSender as TclProButton;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; if (TempButton == nil)</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; Exit;</div><div>&nbsp; &nbsp; }</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; Try</div><div>&nbsp; &nbsp; &nbsp; labelName = TempButton.Hint;</div><div>&nbsp; &nbsp; except</div><div>&nbsp; &nbsp; &nbsp; Exit;</div><div>&nbsp; &nbsp; }</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; if (Trim(labelName) == '')</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; Exit;</div><div>&nbsp; &nbsp; }</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; TempPieceLbl = MainForm.clFindComponent(labelName) as TclProLabel;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; if (TempPieceLbl == nil)</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; Exit;</div><div>&nbsp; &nbsp; }</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; LPieceStr = TempPieceLbl.Text;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; if (Pos('x', LPieceStr) == 1)</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; LPieceStr = Copy(LPieceStr, 2, Length(LPieceStr) - 1);</div><div>&nbsp; &nbsp; }</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; Try</div><div>&nbsp; &nbsp; &nbsp; currentAmount = StrToInt(Trim(LPieceStr));</div><div>&nbsp; &nbsp; except</div><div>&nbsp; &nbsp; &nbsp; currentAmount = 0;</div><div>&nbsp; &nbsp; }</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; // Miktarı güncelle</div><div>&nbsp; &nbsp; currentAmount = currentAmount + APieces;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; if (currentAmount &lt; 0)</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; currentAmount = 0;</div><div>&nbsp; &nbsp; }</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; TempPieceLbl.Text = 'x' + IntToStr(currentAmount);</div><div>&nbsp; except</div><div>&nbsp; &nbsp; // Sessizce devam et</div><div>&nbsp; }</div><div>}</div><div>void ItemDecreaseV</div><div>{</div><div>&nbsp; ChangeItemAmountV_Safe(-1);</div><div>}</div><div><br></div><div>void ItemIncreaseV</div><div>{</div><div>&nbsp; ChangeItemAmountV_Safe(1);</div><div>}</div><div><br></div><div>//&nbsp; BUTON OLUŞTURMA - HINT İLE</div><div><br></div><div>void CreateButtonsWithHint(I: Integer)</div><div>var</div><div>&nbsp; IncreaseBtn, DecreaseBtn: TclProButton;</div><div>&nbsp; PieceLbl: TclProLabel;</div><div>{</div><div>&nbsp; Try</div><div>&nbsp; &nbsp; IncreaseBtn = MainForm.AddNewProButton(ValuePnl, 'IncreaseBtn' + IntToStr(I), '+');</div><div>&nbsp; &nbsp; IncreaseBtn.Width = (MainForm.clWidth * 0.0967);</div><div>&nbsp; &nbsp; IncreaseBtn.Height = (MainForm.clHeight * 0.0453);</div><div>&nbsp; &nbsp; IncreaseBtn.Margins.Bottom = (MainForm.clHeight * 0.0477);</div><div>&nbsp; &nbsp; IncreaseBtn.clProSettings.BorderWidth = 2;</div><div>&nbsp; &nbsp; IncreaseBtn.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#1e1e1e');</div><div>&nbsp; &nbsp; IncreaseBtn.clProSettings.BorderColor = clAlphaColor.clHexToColor('#3a3a3a');</div><div>&nbsp; &nbsp; IncreaseBtn.clProSettings.FontColor = clAlphaColor.clHexToColor('#ffffff');</div><div>&nbsp; &nbsp; IncreaseBtn.clProSettings.FontSize = 20;</div><div>&nbsp; &nbsp; IncreaseBtn.SetclProSettings(IncreaseBtn.clProSettings);</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; MainForm.AddNewEvent(IncreaseBtn, tbeOnClick, 'ItemIncreaseV');</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; IncreaseBtn.Hint = 'PieceLbl' + IntToStr(I);</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; IncreaseBtn.clTagInt = I;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; DecreaseBtn = MainForm.AddNewProButton(ValuePnl, 'DecreaseBtn' + IntToStr(I), '-');</div><div>&nbsp; &nbsp; DecreaseBtn.Width = (MainForm.clWidth * 0.0967);</div><div>&nbsp; &nbsp; DecreaseBtn.Height = (MainForm.clHeight * 0.0453);</div><div>&nbsp; &nbsp; DecreaseBtn.Margins.Top = (MainForm.clHeight * 0.0500);</div><div>&nbsp; &nbsp; DecreaseBtn.clProSettings.BorderWidth = 2;</div><div>&nbsp; &nbsp; DecreaseBtn.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#1e1e1e');</div><div>&nbsp; &nbsp; DecreaseBtn.clProSettings.BorderColor = clAlphaColor.clHexToColor('#3a3a3a');</div><div>&nbsp; &nbsp; DecreaseBtn.clProSettings.FontColor = clAlphaColor.clHexToColor('#ffffff');</div><div>&nbsp; &nbsp; DecreaseBtn.clProSettings.FontSize = 20;</div><div>&nbsp; &nbsp; DecreaseBtn.SetclProSettings(DecreaseBtn.clProSettings);</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; MainForm.AddNewEvent(DecreaseBtn, tbeOnClick, 'ItemDecreaseV');</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; DecreaseBtn.Hint = 'PieceLbl' + IntToStr(I);</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; DecreaseBtn.clTagInt = I;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; PieceLbl = MainForm.AddNewProLabel(DetailsPnl, 'PieceLbl' + IntToStr(I), 'x' + FieldByName('amount').AsString);</div><div>&nbsp; &nbsp; PieceLbl.Width = (MainForm.clWidth * 0.0636);</div><div>&nbsp; &nbsp; PieceLbl.Height = (MainForm.clHeight * 0.0298);</div><div>&nbsp; &nbsp; PieceLbl.Margins.Left = (MainForm.clWidth * 0.4071);</div><div>&nbsp; &nbsp; PieceLbl.Margins.Top = (MainForm.clHeight * 0.0417);</div><div>&nbsp; &nbsp; PieceLbl.clProSettings.FontSize = 16;</div><div>&nbsp; &nbsp; PieceLbl.clProSettings.FontVertAlign = palcenter;</div><div>&nbsp; &nbsp; PieceLbl.clProSettings.FontHorzAlign = palLeading;</div><div>&nbsp; &nbsp; PieceLbl.clProSettings.FontColor = clAlphaColor.clHexToColor('#ffffff');</div><div>&nbsp; &nbsp; PieceLbl.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; &nbsp; PieceLbl.SetclProSettings(PieceLbl.clProSettings);</div><div>&nbsp; except</div><div>&nbsp; &nbsp; ShowMessage('CreateButtonsWithHint hatası: ' + LastExceptionMessage);</div><div>&nbsp; }</div><div>}</div><span style="font-size:10px"><br /><br />Düzenleyen Emr.Erkmn - 12&nbsp;Kasım&nbsp;2025 Saat 17:40</span>]]>
   </description>
   <pubDate>Wed, 12 Nov 2025 17:37:02 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1225&amp;PID=2694#2694</guid>
  </item> 
  <item>
   <title><![CDATA[Dinamik Bileşende işlem : Global de&#287;i&#351;ken yok her buton...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1225&amp;PID=2693#2693</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=257">Emr.Erkmn</a><br /><strong>Konu:</strong> 1225<br /><strong>Gönderim Zamanı:</strong> 12&nbsp;Kasım&nbsp;2025 Saat 17:31<br /><br />Global değişken yok her buton kendi clTagStr değerini kullandığı için&nbsp;<br>ClSender hangi butona tıklandığını buluyor<br>ClTagStr daha hızlı şu an&nbsp;<a href="https://static.cloudflareinsights.com/beac&#111;n.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" target="_blank" rel="nofollow">https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015"</a> integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon="{&quot;version&quot;:&quot;2024.11.0&quot;,&quot;token&quot;:&quot;439455f3e46c40b98dbd42a2f1a954d8&quot;,&quot;r&quot;:1,&quot;server_timing&quot;:{&quot;name&quot;:{&quot;cfCacheStatus&quot;:true,&quot;cfEdge&quot;:true,&quot;cfExtPri&quot;:true,&quot;cfL4&quot;:true,&quot;cfOrigin&quot;:true,&quot;cfSpeedBrain&quot;:true},&quot;location_startswith&quot;:null}}" crossorigin="anonymous">]]>
   </description>
   <pubDate>Wed, 12 Nov 2025 17:31:22 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1225&amp;PID=2693#2693</guid>
  </item> 
  <item>
   <title><![CDATA[Dinamik Bileşende işlem : bende senin gibiclTagStr kulland&#305;mbu...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1225&amp;PID=2692#2692</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=257">Emr.Erkmn</a><br /><strong>Konu:</strong> 1225<br /><strong>Gönderim Zamanı:</strong> 12&nbsp;Kasım&nbsp;2025 Saat 17:30<br /><br />bende senin gibi&nbsp;<br>clTagStr kullandım&nbsp;<br>bu şekil de yazdırdım&nbsp;<br><div>IncreaseBtn = MainForm.AddNewProButton(ValuePnl, 'IncreaseBtn' + IntToStr(I), '+');</div><div>IncreaseBtn.Width = (MainForm.clWidth * 0.0967);</div><div>IncreaseBtn.Height = (MainForm.clHeight * 0.0453);</div><div>IncreaseBtn.Margins.Bottom = (MainForm.clHeight * 0.0477);</div><div>IncreaseBtn.clProSettings.BorderWidth = 2;</div><div>IncreaseBtn.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#1e1e1e');</div><div>IncreaseBtn.clProSettings.BorderColor = clAlphaColor.clHexToColor('#3a3a3a');</div><div>IncreaseBtn.clProSettings.FontColor = clAlphaColor.clHexToColor('#ffffff');</div><div>IncreaseBtn.clProSettings.FontSize = 20;</div><div>IncreaseBtn.SetclProSettings(IncreaseBtn.clProSettings);</div><div><br></div><div>MainForm.AddNewEvent(IncreaseBtn, tbeOnClick, 'ItemIncreaseV');</div><div><br></div><div>// lTagStr'ye label ismini kaydet&nbsp;</div><div>IncreaseBtn.clTagStr = 'PieceLbl' + IntToStr(I);</div><div>IncreaseBtn.clTagInt = I;&nbsp; // Index'i de kaydet&nbsp;</div><div><br></div><div>DecreaseBtn = MainForm.AddNewProButton(ValuePnl, 'DecreaseBtn' + IntToStr(I), '-');</div><div>DecreaseBtn.Width = (MainForm.clWidth * 0.0967);</div><div>DecreaseBtn.Height = (MainForm.clHeight * 0.0453);</div><div>DecreaseBtn.Margins.Top = (MainForm.clHeight * 0.0500);</div><div>DecreaseBtn.clProSettings.BorderWidth = 2;</div><div>DecreaseBtn.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#1e1e1e');</div><div>DecreaseBtn.clProSettings.BorderColor = clAlphaColor.clHexToColor('#3a3a3a');</div><div>DecreaseBtn.clProSettings.FontColor = clAlphaColor.clHexToColor('#ffffff');</div><div>DecreaseBtn.clProSettings.FontSize = 20;</div><div>DecreaseBtn.SetclProSettings(DecreaseBtn.clProSettings);</div><div><br></div><div>MainForm.AddNewEvent(DecreaseBtn, tbeOnClick, 'ItemDecreaseV');</div><div><br></div><div>// clTagStr'ye label ismini kaydet</div><div>DecreaseBtn.clTagStr = 'PieceLbl' + IntToStr(I);</div><div>DecreaseBtn.clTagInt = I;&nbsp; // Index'i de kaydet&nbsp;</div><div><br></div><a href="https://static.cloudflareinsights.com/beac&#111;n.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" target="_blank" rel="nofollow">https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015"</a> integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon="{&quot;version&quot;:&quot;2024.11.0&quot;,&quot;token&quot;:&quot;439455f3e46c40b98dbd42a2f1a954d8&quot;,&quot;r&quot;:1,&quot;server_timing&quot;:{&quot;name&quot;:{&quot;cfCacheStatus&quot;:true,&quot;cfEdge&quot;:true,&quot;cfExtPri&quot;:true,&quot;cfL4&quot;:true,&quot;cfOrigin&quot;:true,&quot;cfSpeedBrain&quot;:true},&quot;location_startswith&quot;:null}}" crossorigin="anonymous">]]>
   </description>
   <pubDate>Wed, 12 Nov 2025 17:30:02 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1225&amp;PID=2692#2692</guid>
  </item> 
  <item>
   <title><![CDATA[Dinamik Bileşende işlem : Dinamik olarak olu&#351;an panelime...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1225&amp;PID=2691#2691</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=344">M-Guney</a><br /><strong>Konu:</strong> 1225<br /><strong>Gönderim Zamanı:</strong> 12&nbsp;Kasım&nbsp;2025 Saat 16:40<br /><br />Dinamik olarak oluşan panelime artı eksi butonları ekledim ve o butonlara tıklanma durumunda miktarı artırmak için bu kodu yazdım fakat arasında gecikme oluyor daha iyi bir yöntem var mı Örnek olarak hint ile ulaşmayı denedim fakat access violation hatası verdi.<br><br><div>void ChangeItemAmountV(APieces : Integer)</div><div>var</div><div>&nbsp;TempPieceLbl : TclProLabel;</div><div>&nbsp;LPieceStr : String;</div><div>{</div><div>&nbsp; //ShowMessage(ComponentName);</div><div>&nbsp; TempPieceLbl = MainForm.clFindComponent(ComponentName) as TclProLabel; //'PieceLbl'+IntToStr(I)</div><div>&nbsp; LPieceStr = TempPieceLbl.Text;</div><div>&nbsp; Delete(LPieceStr,1,1); //Delete x letter from piecesLbl</div><div>&nbsp; if((APieces&gt;0)||(StrToInt(LPieceStr)&gt;0))</div><div>&nbsp; &nbsp; LPieceStr = StrToInt(LPieceStr) + APieces;</div><div>&nbsp; Insert('x', LPieceStr,0);// Add x&nbsp;</div><div>&nbsp; TempPieceLbl.Text = LPieceStr;</div><div>&nbsp; &nbsp;</div><div>&nbsp; //ShowMessage(LPieceStr);</div><div>}</div><div>void ItemDecreaseV</div><div>{</div><div>&nbsp; ChangeItemAmountV(-1);</div><div>}</div><div>void ItemIncreaseV</div><div>{</div><div>&nbsp; ChangeItemAmountV(1);</div><div>}<br><br><div>IncreaseBtn = MainForm.AddNewProButton(ValuePnl,'IncreaseBtn'+IntToStr(I),'+');</div><div>&nbsp; &nbsp; &nbsp; //IncreaseBtn.Width = 38;</div><div>&nbsp; &nbsp; &nbsp; IncreaseBtn.Width = (MainForm.clWidth * 0.0967);</div><div>&nbsp; &nbsp; &nbsp; //IncreaseBtn.Height = 38;</div><div>&nbsp; &nbsp; &nbsp; IncreaseBtn.Height = (MainForm.clHeight * 0.0453);</div><div>&nbsp; &nbsp; &nbsp; //IncreaseBtn.Margins.Bottom=40;</div><div>&nbsp; &nbsp; &nbsp; IncreaseBtn.Margins.Bottom = (MainForm.clHeight * 0.0477);</div><div>&nbsp; &nbsp; &nbsp; IncreaseBtn.clProSettings.BorderWidth = 2;</div><div>&nbsp; &nbsp; &nbsp; IncreaseBtn.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#1e1e1e');</div><div>&nbsp; &nbsp; &nbsp; IncreaseBtn.clProSettings.BorderColor = clAlphaColor.clHexToColor('#3a3a3a');</div><div>&nbsp; &nbsp; &nbsp; IncreaseBtn.clProSettings.FontColor = clAlphaColor.clHexToColor('#ffffff');</div><div>&nbsp; &nbsp; &nbsp; IncreaseBtn.clProSettings.FontSize = 20;</div><div>&nbsp; &nbsp; &nbsp; IncreaseBtn.SetclProSettings(IncreaseBtn.clProSettings);</div><div>&nbsp; &nbsp; &nbsp; MainForm.AddNewEvent(IncreaseBtn,tbeOnClick,'ItemIncreaseV');</div><div>&nbsp; &nbsp; &nbsp; IncreaseBtn.clTagStr = 'Inc';</div><div>&nbsp; &nbsp; &nbsp; IncreaseBtn.clTagInt = StrToInt( FieldByName('item_id').AsString );</div><div>&nbsp; &nbsp; &nbsp; IncreaseBtn.hint = 'PieceLbl'+IntToStr(I);</div><div>&nbsp; &nbsp; &nbsp; ComponentName = IncreaseBtn.hint;</div><div>&nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; DecreaseBtn = MainForm.AddNewProButton(ValuePnl,'DecreaseBtn'+IntToStr(I),'-');</div><div>&nbsp; &nbsp; &nbsp; //DecreaseBtn.Width = 38;</div><div>&nbsp; &nbsp; &nbsp; DecreaseBtn.Width = (MainForm.clWidth * 0.0967);</div><div>&nbsp; &nbsp; &nbsp; //DecreaseBtn.Height = 38;</div><div>&nbsp; &nbsp; &nbsp; DecreaseBtn.Height = (MainForm.clHeight * 0.0453);</div><div>&nbsp; &nbsp; &nbsp; //DecreaseBtn.Margins.top=40;</div><div>&nbsp; &nbsp; &nbsp; DecreaseBtn.Margins.top = (MainForm.clHeight * 0.0500);</div><div>&nbsp; &nbsp; &nbsp; DecreaseBtn.clProSettings.BorderWidth = 2;</div><div>&nbsp; &nbsp; &nbsp; DecreaseBtn.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#1e1e1e');</div><div>&nbsp; &nbsp; &nbsp; DecreaseBtn.clProSettings.BorderColor = clAlphaColor.clHexToColor('#3a3a3a');</div><div>&nbsp; &nbsp; &nbsp; DecreaseBtn.clProSettings.FontColor = clAlphaColor.clHexToColor('#ffffff');</div><div>&nbsp; &nbsp; &nbsp; DecreaseBtn.clProSettings.FontSize = 20;</div><div>&nbsp; &nbsp; &nbsp; DecreaseBtn.SetclProSettings(DecreaseBtn.clProSettings);</div><div>&nbsp; &nbsp; &nbsp; MainForm.AddNewEvent(DecreaseBtn,tbeOnClick,'ItemDecreaseV');</div><div>&nbsp; &nbsp; &nbsp; DecreaseBtn.clTagStr = 'Dec';</div><div>&nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; PieceLbl = MainForm.AddNewProLabel(DetailsPnl,'PieceLbl'+IntToStr(I), 'x' + FieldByName('amount').AsString ); //HERE</div><div>&nbsp; &nbsp; &nbsp; //PieceLbl.Width = 25;</div><div>&nbsp; &nbsp; &nbsp; PieceLbl.Width = (MainForm.clWidth * 0.0636);</div><div>&nbsp; &nbsp; &nbsp; //PieceLbl.Height = 25;</div><div>&nbsp; &nbsp; &nbsp; PieceLbl.Height = (MainForm.clHeight * 0.0298);</div><div>&nbsp; &nbsp; &nbsp; //PieceLbl.Margins.Left=160;</div><div>&nbsp; &nbsp; &nbsp; PieceLbl.Margins.Left= (MainForm.clWidth * 0.4071);</div><div>&nbsp; &nbsp; &nbsp; //PieceLbl.Margins.top=35;</div><div>&nbsp; &nbsp; &nbsp; PieceLbl.Margins.top= (MainForm.clHeight * 0.0417);</div><div>&nbsp; &nbsp; &nbsp; PieceLbl.clProSettings.FontSize = 16;</div><div>&nbsp; &nbsp; &nbsp; //PieceLbl.clTagStr = 'PieceLbl'+IntToStr(I);</div><div>&nbsp; &nbsp; &nbsp; PieceLbl.clProSettings.FontVertAlign = palcenter;</div><div>&nbsp; &nbsp; &nbsp; PieceLbl.clProSettings.FontHorzAlign = palLeading;</div><div>&nbsp; &nbsp; &nbsp; PieceLbl.clProSettings.FontColor = clAlphaColor.clHexToColor('#ffffff');</div><div>&nbsp; &nbsp; &nbsp; PieceLbl.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; &nbsp; &nbsp; //PieceLbl.text=IntToStr(piece);</div><div>&nbsp; &nbsp; &nbsp; PieceLbl.SetclProSettings(PieceLbl.clProSettings);</div><div>&nbsp; &nbsp; &nbsp; PieceLbl.clTagStr = 'PieceLbl'+IntToStr(I);</div></div><a href="https://static.cloudflareinsights.com/beac&#111;n.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" target="_blank" rel="nofollow">https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015"</a> integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon="{&quot;version&quot;:&quot;2024.11.0&quot;,&quot;token&quot;:&quot;439455f3e46c40b98dbd42a2f1a954d8&quot;,&quot;r&quot;:1,&quot;server_timing&quot;:{&quot;name&quot;:{&quot;cfCacheStatus&quot;:true,&quot;cfEdge&quot;:true,&quot;cfExtPri&quot;:true,&quot;cfL4&quot;:true,&quot;cfOrigin&quot;:true,&quot;cfSpeedBrain&quot;:true},&quot;location_startswith&quot;:null}}" crossorigin="anonymous">]]>
   </description>
   <pubDate>Wed, 12 Nov 2025 16:40:02 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1225&amp;PID=2691#2691</guid>
  </item> 
 </channel>
</rss>