<?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 : TclProListView&#039;e ekleme</title>
  <link>https://www.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Genel &#304;&#351;lemler : TclProListView&#039;e ekleme]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Tue, 14 Apr 2026 23:39:48 +0000</pubDate>
  <lastBuildDate>Tue, 18 Jul 2023 14:44:32 +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=509</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[TclProListView&#039;e ekleme : te&#351;ekk&#252;rler ]]></title>
   <link>https://www.clomosy.com.tr/forum_posts.asp?TID=509&amp;PID=531#531</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://www.clomosy.com.tr/member_profile.asp?PF=110">muscicek</a><br /><strong>Konu:</strong> 509<br /><strong>Gönderim Zamanı:</strong> 18&nbsp;Temmuz&nbsp;2023 Saat 14:44<br /><br />teşekkürler]]>
   </description>
   <pubDate>Tue, 18 Jul 2023 14:44:32 +0000</pubDate>
   <guid isPermaLink="true">https://www.clomosy.com.tr/forum_posts.asp?TID=509&amp;PID=531#531</guid>
  </item> 
  <item>
   <title><![CDATA[TclProListView&#039;e ekleme : JSON yap&#305;s&#305;n&#305; kullanarak liste...]]></title>
   <link>https://www.clomosy.com.tr/forum_posts.asp?TID=509&amp;PID=530#530</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://www.clomosy.com.tr/member_profile.asp?PF=96">Saliha Göçergi</a><br /><strong>Konu:</strong> 509<br /><strong>Gönderim Zamanı:</strong> 18&nbsp;Temmuz&nbsp;2023 Saat 13:56<br /><br />JSON yapısını kullanarak liste görünümünü özelleştirebilirsiniz. Aşağıda, bu konuya ilişkin bir örnek bulunmaktadır:<div><br></div><div><div><font color="#000066">var</font></div><div><font color="#000066">&nbsp; MyForm:TclStyleForm;</font></div><div><font color="#000066">&nbsp; MyVertBox:TClVertScrollBox;</font></div><div><font color="#000066">&nbsp; lbl1,lbl2:TclProLabel;</font></div><div><font color="#000066">&nbsp; contentListview : TClProListView;</font></div><div><font color="#000066">&nbsp; contentDesignerPanel : TClProListViewDesignerPanel;</font></div><div><font color="#000066">&nbsp;&nbsp;</font></div><div><font color="#000066">procedure AddDataToListview;</font></div><div><font color="#000066">begin</font></div><div><font color="#000066">&nbsp; contentListview.clLoadProListViewDataFromDataset(Clomosy.ClDataSetFromJSON('&#091;</font></div><div><font color="#000066">&nbsp; {"lbl1":"Entrance","lbl2":1},</font></div><div><font color="#000066">&nbsp; {"lbl1":"Problem solving test","lbl2":2},</font></div><div><font color="#000066">&nbsp; {"lbl1":"Programs","lbl2":3},</font></div><div><font color="#000066">&nbsp; {"lbl1":"Summary","lbl2":4}</font></div><div><font color="#000066">&nbsp; &#093;'));</font></div><div><font color="#000066">end;</font></div><div><font color="#000066"><br></font></div><div><font color="#000066">begin&nbsp;</font></div><div><font color="#000066">&nbsp;&nbsp;</font></div><div><font color="#000066">&nbsp; MyForm := TclStyleForm.Create(Self);</font></div><div><font color="#000066">&nbsp; MyForm.clSetStyle(MyForm.LightSB);</font></div><div><font color="#000066">&nbsp;&nbsp;</font></div><div><font color="#000066">&nbsp; MyVertBox:= MyForm.AddNewVertScrollBox(MyForm,'MyVertBox');</font></div><div><font color="#000066">&nbsp; MyVertBox.Align := alClient;</font></div><div><font color="#000066">&nbsp;&nbsp;</font></div><div><font color="#000066">&nbsp; contentListview := MyForm.AddNewProListView(MyVertBox,'contentListview');</font></div><div><font color="#000066">&nbsp; clComponent.SetupComponent(contentListview,'{"Align":"Client","MarginRight":5,"MarginLeft":5, "ListType":"Cart",</font></div><div><font color="#000066">&nbsp; "ItemHeight" : 50,"ItemWidth":'+IntToStr((contentListview.Width)/2)+',"ItemColumnCount" : 2,"ItemSpace" : 5,</font></div><div><font color="#000066">&nbsp; "BackgroundColor":"null"}');</font></div><div><font color="#000066">&nbsp; contentListview.ListType := 'Vertical';</font></div><div><font color="#000066">&nbsp; &nbsp;</font></div><div><font color="#000066">&nbsp; contentDesignerPanel := MyForm.AddNewProListViewDesignerPanel(contentListview,'contentDesignerPanel');&nbsp;</font></div><div><font color="#000066">&nbsp; clComponent.SetupComponent(contentDesignerPanel,'{"BorderColor":"#3b485c","BorderWidth":1,"RoundHeight":5,</font></div><div><font color="#000066">&nbsp; "RoundWidth":5,"BackgroundColor":"null"}');</font></div><div><font color="#000066">&nbsp; contentListview.SetDesignerPanel(contentDesignerPanel);</font></div><div><font color="#000066">&nbsp;&nbsp;</font></div><div><font color="#000066">&nbsp;&nbsp;</font></div><div><font color="#000066">&nbsp; lbl1:=MyForm.AddNewProLabel(contentDesignerPanel,'lbl1','Topic is here maybe variables,loops');</font></div><div><font color="#000066">&nbsp; clComponent.SetupComponent(lbl1,'{"Align":"Left","TextColor":"#000000",</font></div><div><font color="#000066">&nbsp; "TextBold":"yes","TextSize":16,"TextHorizontalAlign":"left",</font></div><div><font color="#000066">&nbsp; "TextVerticalAlign":"center","AutoSize":"horizontal"}');</font></div><div><font color="#000066">&nbsp; contentDesignerPanel.AddPanelObject(lbl1,clCaption);</font></div><div><font color="#000066">&nbsp;&nbsp;</font></div><div><font color="#000066">&nbsp; lbl2:=MyForm.AddNewProLabel(contentDesignerPanel,'lbl2','Topic is here maybe variables,loops');</font></div><div><font color="#000066">&nbsp; clComponent.SetupComponent(lbl2,'{"Align":"Right","TextColor":"#000000",</font></div><div><font color="#000066">&nbsp; "TextBold":"yes","TextSize":16,"TextHorizontalAlign":"left",</font></div><div><font color="#000066">&nbsp; "TextVerticalAlign":"center","AutoSize":"horizontal"}');</font></div><div><font color="#000066">&nbsp; contentDesignerPanel.AddPanelObject(lbl2,clText);</font></div><div><font color="#000066">&nbsp; AddDataToListview;</font></div><div><font color="#000066">&nbsp;&nbsp;</font></div><div><font color="#000066">&nbsp; MyForm.Run;</font></div><div><font color="#000066">end;</font></div></div><div><br></div>]]>
   </description>
   <pubDate>Tue, 18 Jul 2023 13:56:32 +0000</pubDate>
   <guid isPermaLink="true">https://www.clomosy.com.tr/forum_posts.asp?TID=509&amp;PID=530#530</guid>
  </item> 
  <item>
   <title><![CDATA[TclProListView&#039;e ekleme :  Liste g&#246;r&#252;n&#252;m&#252;ne kendi tan&#305;mlad&#305;&#287;&#305;m...]]></title>
   <link>https://www.clomosy.com.tr/forum_posts.asp?TID=509&amp;PID=529#529</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://www.clomosy.com.tr/member_profile.asp?PF=110">muscicek</a><br /><strong>Konu:</strong> 509<br /><strong>Gönderim Zamanı:</strong> 18&nbsp;Temmuz&nbsp;2023 Saat 13:12<br /><br /><img src="uploads/110/Ekran_Alıasdntısı.PNG" height="274" width="350" border="0" align="top" /><div><br></div><div>Liste görünümüne kendi tanımladığım listeden veri yükleyip yukarıdaki gibi görüntülemek istiyorum nasıl yapabilirim?</div>]]>
   </description>
   <pubDate>Tue, 18 Jul 2023 13:12:54 +0000</pubDate>
   <guid isPermaLink="true">https://www.clomosy.com.tr/forum_posts.asp?TID=509&amp;PID=529#529</guid>
  </item> 
 </channel>
</rss>