<?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 : butonda liste döndürme</title>
  <link>https://www.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Genel &#304;&#351;lemler : butonda liste döndürme]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Tue, 14 Apr 2026 23:39:46 +0000</pubDate>
  <lastBuildDate>Mon, 31 Jul 2023 14:30:33 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.07</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://www.clomosy.com.tr/RSS_post_feed.asp?TID=531</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Clomosy | Forum]]></title>
   <url>https://www.clomosy.com.tr/forum_images/logo.png</url>
   <link>https://www.clomosy.com.tr/</link>
  </image>
  <item>
   <title><![CDATA[butonda liste döndürme : Bunun i&#231;in bu kodu ana kodunuzun...]]></title>
   <link>https://www.clomosy.com.tr/forum_posts.asp?TID=531&amp;PID=597#597</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://www.clomosy.com.tr/member_profile.asp?PF=133">Alforce</a><br /><strong>Konu:</strong> 531<br /><strong>Gönderim Zamanı:</strong> 31&nbsp;Temmuz&nbsp;2023 Saat 14:30<br /><br />Bunun için bu kodu ana kodunuzun ilk baş kısmında kullanın.<div>Benim ikinci birimim Unit2, bu yüzden böyle yazdım. Siz ikinci biriminizin ismini bu şekilde yazın.<br><div><br><div><table width="99%"><tr><td><pre class="BBcode"></div><div>Uses Unit2;</div></div><div></pre></td></tr></table></div></div>]]>
   </description>
   <pubDate>Mon, 31 Jul 2023 14:30:33 +0000</pubDate>
   <guid isPermaLink="true">https://www.clomosy.com.tr/forum_posts.asp?TID=531&amp;PID=597#597</guid>
  </item> 
  <item>
   <title><![CDATA[butonda liste döndürme : KOD1-var MyForm:TclForm; satirLyt,sutunLyt:TClLayout;...]]></title>
   <link>https://www.clomosy.com.tr/forum_posts.asp?TID=531&amp;PID=595#595</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://www.clomosy.com.tr/member_profile.asp?PF=107">Zeren</a><br /><strong>Konu:</strong> 531<br /><strong>Gönderim Zamanı:</strong> 31&nbsp;Temmuz&nbsp;2023 Saat 13:59<br /><br />KOD1-var<div>&nbsp; MyForm:TclForm;</div><div>&nbsp; satirLyt,sutunLyt:TClLayout;</div><div>&nbsp; arkaPnl,p1:TCLPanel;</div><div>&nbsp; alanBtn: TCLButton;</div><div>&nbsp; i,j:Integer;</div><div>&nbsp; procedure alanBtnOnClick;</div><div>&nbsp; begin</div><div>&nbsp; &nbsp; ShowMessage(TCLButton(MyForm.ClSender).Text);</div><div>&nbsp; end;</div><div><br></div><div>begin</div><div>&nbsp; MyForm := TclForm.Create(Self);</div><div>&nbsp;&nbsp;</div><div>&nbsp; arkaPnl:=MyForm.AddNewProPanel(MyForm,'arkaPnl');</div><div>&nbsp; clComponent.SetupComponent(arkaPnl,'{"Align" : "Client","BackgroundColor":"#EEE8AA"}');</div><div>&nbsp;&nbsp;</div><div>&nbsp; p1:=MyForm.AddNewProPanel(arkaPnl,'p1');</div><div>&nbsp; clComponent.SetupComponent(p1,'{"Align" : "Client","BackgroundColor":"#EEE8AA"}');</div><div>&nbsp;&nbsp;</div><div>&nbsp; for i:= 0 to 4 do begin&nbsp;</div><div>&nbsp; &nbsp; satirLyt:=MyForm.AddNewLayout(p1,'satirLyt'+IntToStr(i));</div><div>&nbsp; &nbsp; satirLyt.Align:=alMostTop;</div><div>&nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; sutunLyt:=MyForm.AddNewLayout(satirLyt,'sutunLyt'+IntToStr(i)+IntToStr(j));</div><div>&nbsp; &nbsp; &nbsp; sutunLyt.Align:=alMostleft;</div><div>&nbsp; &nbsp; &nbsp; sutunLyt.Width:=30;</div><div>&nbsp; &nbsp; &nbsp; sutunLyt.Height:=30;</div><div>&nbsp; &nbsp; &nbsp; alanBtn:=MyForm.AddNewProButton(sutunLyt,'alanBtn'+IntToStr(i)+IntToStr(j),IntToStr(I)+' - '+IntToStr(j));</div><div>&nbsp; &nbsp; &nbsp; clComponent.SetupComponent(alanBtn,'{"Align" : "client","Width" :50, "Height":50, "BorderColor":"#000000","BorderWidth":1, "BackgroundColor":"#ffffff"}');</div><div>&nbsp; &nbsp; &nbsp; MyForm.AddNewEvent(alanBtn,tbeOnClick,'alanBtnOnClick');</div><div>&nbsp;</div><div>&nbsp; end;</div><div>&nbsp;&nbsp;</div><div>&nbsp;MyForm.Run;</div><div>end;</div><div><br></div><div>KOD2- var</div><div>&nbsp; MyList: TclStringList;</div><div>&nbsp; ItemCount: Integer;</div><div>begin</div><div>&nbsp; MyList := Clomosy.StringListNew;</div><div><br></div><div>&nbsp; MyList.Add('Kule Site');</div><div>&nbsp; MyList.Add('Real');</div><div>&nbsp; MyList.Add('Kent');</div><div>&nbsp; MyList.Add('Bosna');</div><div>&nbsp; MyList.Add('Meram');</div><div><br></div><div>&nbsp; ItemCount := MyList.Count;</div><div>&nbsp;&nbsp;</div><div>&nbsp; ShowMessage('There are ' + IntToStr(ItemCount) + ' items in the list.');</div><div>&nbsp;&nbsp;</div><div>&nbsp; MyList.Free;</div><div>end;</div><div><br></div><div>KOD1 ve KOD2 yi birleştirerek KOD1 butonlarında KOD2 deki listeyi döndürmek istiyorum nasıl bağlayabilirim</div><div><br></div><div><br></div><div><br></div>]]>
   </description>
   <pubDate>Mon, 31 Jul 2023 13:59:20 +0000</pubDate>
   <guid isPermaLink="true">https://www.clomosy.com.tr/forum_posts.asp?TID=531&amp;PID=595#595</guid>
  </item> 
 </channel>
</rss>