<?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 : Probuton Resim değiştirme</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; : Probuton Resim değiştirme]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 15 Apr 2026 04:36:12 +0000</pubDate>
  <lastBuildDate>Mon, 17 Nov 2025 18:15:25 +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=1230</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[Probuton Resim değiştirme : Merhaba G&#252;ney,Image1.Bitmap.LoadFromStream(FileStream)...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1230&amp;PID=2708#2708</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> 1230<br /><strong>Gönderim Zamanı:</strong> 17&nbsp;Kasım&nbsp;2025 Saat 18:15<br /><br />Merhaba Güney,&nbsp;<br><span style="color: rgb32, 33, 34; font-family: &quot;Liberati&#111;n Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 13px; : rgb248, 249, 250;">Image1.Bitmap.LoadFromStream(FileStream) için TclProImage değil TclImage kullanmak gerekiyor<br>çünkü özellikle olarak pro bileşeninnde yok&nbsp;</span><font color="#202122" face="Liberati&#111;n Sans, Helvetica Neue, Helvetica, Arial, sans-serif"><span style="font-size: 13px;"><a href="https://www.docs.clomosy.com/TclImage" target="_blank" rel="nofollow">https://www.docs.clomosy.com/TclImage</a></span><br><br><div style=""><span style="font-size: 13px;"><br></span></div><div style=""><span style="font-size: 13px;">var</span></div><div style=""><span style="font-size: 13px;">&nbsp; MainForm: TclForm;</span></div><div style=""><span style="font-size: 13px;">&nbsp; JsonResponse: String;</span></div><div style=""><span style="font-size: 13px;">&nbsp; FQry: TCLJSONQuery;</span></div><div style=""><span style="font-size: 13px;"><br></span></div><div style=""><span style="font-size: 13px;"><br></span></div><div style=""><span style="font-size: 13px;">void FillItemsPnlV(FQry: TCLJSONQuery)</span></div><div style=""><span style="font-size: 13px;">var</span></div><div style=""><span style="font-size: 13px;">&nbsp; I: Integer;</span></div><div style=""><span style="font-size: 13px;">&nbsp; TempCategoryNameLbl: TclProLabel;</span></div><div style=""><span style="font-size: 13px;">&nbsp; TempItemImage: TclPImage;&nbsp;&nbsp;</span></div><div style=""><span style="font-size: 13px;">&nbsp; TempItemsPnl: TclProPanel;</span></div><div style=""><span style="font-size: 13px;">&nbsp; TempImageBase64: String;</span></div><div style=""><span style="font-size: 13px;">&nbsp; LMemStream: TCLMemoryStream;</span></div><div style=""><span style="font-size: 13px;">{</span></div><div style=""><span style="font-size: 13px;">&nbsp; I = 0;</span></div><div style=""><span style="font-size: 13px;">&nbsp; Try</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; with FQry do</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; {</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; if (Found)</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; {</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; First;</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; while (not EOF)</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; {</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Try</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; TempCategoryNameLbl = MainForm.clFindComponent('CategoryNameLbl' + IntToStr(I)) as TclProLabel;</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (TempCategoryNameLbl &lt;&gt; nil)</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; TempCategoryNameLbl.Text = FieldByName('category_name').AsString;</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; TempItemsPnl = MainForm.clFindComponent('ItemsPnl' + IntToStr(I)) as TclProPanel;</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (TempItemsPnl &lt;&gt; nil)</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; TempItemsPnl.Height = (MainForm.clHeight * 0.2101); // 176.25 / 839 &#8776; 0.2101</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; TempItemsPnl.Width = (MainForm.clWidth * 0.4200); // 165 / 393 &#8776; 0.4200</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; TempItemImage = MainForm.clFindComponent('ItemImage' + IntToStr(I)) as TclProImage;</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (TempItemImage &lt;&gt; nil)</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; TempImageBase64 = FieldByName('category_image_base64').AsString;</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (TempImageBase64 &lt;&gt; '')</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Try</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // &#9989; 5. Base64'ten MemoryStream'e çevir</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; LMemStream = Clomosy.Base64ToStream(TempImageBase64);</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (LMemStream &lt;&gt; nil)</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; TempItemImage.Bitmap.LoadFromStream(LMemStream);</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; LMemStream.Free;</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; LMemStream = nil;</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; except</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ShowMessage('Resim yükleme hatası (Index ' + IntToStr(I) + '): ' + LastExceptionMessage);</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (LMemStream &lt;&gt; nil)</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; LMemStream.Free;</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; LMemStream = nil;</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; else</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; TempItemImage.clProSettings.PictureSource = '<a href="https://clomosy.com/demos/default.png" target="_blank" rel="nofollow">https://clomosy.com/demos/default.png</a>';</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; TempItemImage.SetclProSettings(TempItemImage.clProSettings);</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Next;</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Inc(I);</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; except</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ShowMessage('Index ' + IntToStr(I) + ' için hata: ' + LastExceptionMessage);</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Next;</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Inc(I);</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; &nbsp; }</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; &nbsp; }</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; }</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp;&nbsp;</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; ShowMessage(' Veriler dolduruldu. Toplam: ' + IntToStr(I) + ' kayıt');</span></div><div style=""><span style="font-size: 13px;">&nbsp;&nbsp;</span></div><div style=""><span style="font-size: 13px;">&nbsp; except</span></div><div style=""><span style="font-size: 13px;">&nbsp;&nbsp;</span></div><div style=""><span style="font-size: 13px;">&nbsp; &nbsp; ShowMessage(' FillItemsPnlV hatası: ' + LastExceptionMessage);</span></div><div style=""><span style="font-size: 13px;">&nbsp; }</span></div><div style=""><span style="font-size: 13px;">}</span></div><div style="font-size: 13px;"><br></div></font><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>Mon, 17 Nov 2025 18:15:25 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1230&amp;PID=2708#2708</guid>
  </item> 
  <item>
   <title><![CDATA[Probuton Resim değiştirme : Memory stream den ald&#305;&#287;&#305;m resmi...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1230&amp;PID=2705#2705</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> 1230<br /><strong>Gönderim Zamanı:</strong> 17&nbsp;Kasım&nbsp;2025 Saat 15:18<br /><br />Memory stream den aldığım resmi probuttonun resmi yapmak istiyorum.<div>Veritabanından tek bir endpoint ile bütün kategorilerin resimlerini ve adlarını göstermek istiyorum.<br><br><div>void FillItemsPnlV(FQry: TCLJSONQuery)</div><div>&nbsp; var&nbsp;</div><div>&nbsp; I : Integer;</div><div>&nbsp; TempCategoryNameLbl: TclProLabel;</div><div>&nbsp; TempItemImageBtn : TLCProImage;</div><div>&nbsp; TempItemsPnl : TclProPanel;</div><div>&nbsp; TempImageBase64 : String;</div><div>&nbsp; LMemStream:TCLMemoryStream;</div><div>&nbsp; {</div><div>&nbsp; &nbsp;I = 0;</div><div>&nbsp; Try</div><div>&nbsp; &nbsp; with FQry do</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; if (Found)</div><div>&nbsp; &nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; First;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; while (not EOF)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Try</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; TempCategoryNameLbl = MainForm.clFindComponent('CategoryNameLbl' + IntToStr(I)) as TclProLabel;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (TempTableLbl &lt;&gt; nil)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; TempCategoryNameLbl.Text = FieldByName('category_name').AsString;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; TempItemsPnl = MainForm.clFindComponent('ItemsPnl' + IntToStr(I)) as TclProPanel;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (TempOrdersPnl &lt;&gt; nil)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ItemsPnl.height = (MainForm.clHeight * 0.2101); // 176.25 / 839 &#8776; 0.2101</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ItemsPnl.width = (MainForm.clWidth * 0.4200); // 165 / 393 &#8776; 0.4200</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; TempItemImageBtn = MainForm.clFindComponent('ItemImageBtn' + IntToStr(I));</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if(TempItemImageBtn &lt;&gt; nil)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; TempImageBase64 = FieldByName('category_image_base64').AsString;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; LMemStream = Clomosy.Base64ToStream(TempImageBase64);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; TempItemImageBtn.Bitmap.LoadFromStream(LMemStream);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //TempItemImageBtn.clProSettings.PictureSource =&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</div><div>&nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Next;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Inc(I);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; except</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ShowMessage('Index ' + IntToStr(I) + ' için hata: ' + LastExceptionMessage);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Next;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Inc(I);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; &nbsp; &nbsp; LMemStream.Free;</div><div>&nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; }</div><div>&nbsp; &nbsp; ShowMessage(' Veriler dolduruldu. Toplam: ' + IntToStr(I) + ' kayıt');</div><div>&nbsp;&nbsp;</div><div>&nbsp; except</div><div>&nbsp;&nbsp;</div><div>&nbsp; &nbsp; ShowMessage('FillOrdersPnlV hatası: ' + LastExceptionMessage);</div><div>&nbsp; }</div><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"></div>]]>
   </description>
   <pubDate>Mon, 17 Nov 2025 15:18:01 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1230&amp;PID=2705#2705</guid>
  </item> 
 </channel>
</rss>