<?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 : Tablo</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; : Tablo]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 15 Apr 2026 02:57:57 +0000</pubDate>
  <lastBuildDate>Mon, 16 Feb 2026 09:46:44 +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=1334</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[Tablo : Merhaba Melih&#214;rne&#287;i inceler misinvar...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1334&amp;PID=2992#2992</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> 1334<br /><strong>Gönderim Zamanı:</strong> 16&nbsp;Şubat&nbsp;2026 Saat 09:46<br /><br />Merhaba Melih&nbsp;<br>Örneği inceler misin&nbsp;<br><br><div>var</div><div>&nbsp; MyForm : TCLForm;</div><div>&nbsp; MyGrid : TCLStringGrid;</div><div>&nbsp; btnEkle : TCLProButton;</div><div>&nbsp; edtAd, edtSoyad : TClProEdit;</div><div>&nbsp; LayoutInput : TclLayout;</div><div>&nbsp;&nbsp;</div><div>&nbsp; GlobalJsonData : String;&nbsp;</div><div><br></div><div>void GridTazele;</div><div>var</div><div>&nbsp; MyDataSet : TClJSonQuery;</div><div>&nbsp; TamJson : String;</div><div>{</div><div>&nbsp; MyForm.RemoveGridBinding('MyLink');</div><div>&nbsp;&nbsp;</div><div>&nbsp; TamJson = '&#091;' + GlobalJsonData + '&#093;';</div><div>&nbsp;&nbsp;</div><div>&nbsp; MyDataSet = Clomosy.ClDataSetFromJSON(TamJson);</div><div>&nbsp;&nbsp;</div><div>&nbsp; MyForm.AddNewGridBinding(MyGrid, MyDataSet, 'MyLink');</div><div>&nbsp;&nbsp;</div><div>&nbsp; if (MyGrid.ColumnCount &gt; 0)</div><div>&nbsp; {</div><div>&nbsp; &nbsp; MyGrid.Columns&#091;0&#093;.Header = 'ADI';</div><div>&nbsp; &nbsp; MyGrid.Columns&#091;0&#093;.Width = 100;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; MyGrid.Columns&#091;1&#093;.Header = 'SOYADI';</div><div>&nbsp; &nbsp; MyGrid.Columns&#091;1&#093;.Width = 150;</div><div>&nbsp; }</div><div>}</div><div><br></div><div>void VeriEkle(Ad, Soyad : String);</div><div>var</div><div>&nbsp; YeniKayit : String;</div><div>{</div><div>&nbsp; YeniKayit = '{"Col1":"' + Ad + '", "Col2":"' + Soyad + '"}';</div><div>&nbsp;&nbsp;</div><div>&nbsp; if (GlobalJsonData &lt;&gt; '')</div><div>&nbsp; &nbsp; GlobalJsonData = GlobalJsonData + ',' + YeniKayit;</div><div>&nbsp; else</div><div>&nbsp; &nbsp; GlobalJsonData = YeniKayit;&nbsp;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; GridTazele;</div><div>}</div><div><br></div><div>void ButonaTiklandi;</div><div>{</div><div>&nbsp; if (edtAd.Text &lt;&gt; '')</div><div>&nbsp; {</div><div>&nbsp; &nbsp; VeriEkle(edtAd.Text, edtSoyad.Text);</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; edtAd.Text = '';</div><div>&nbsp; &nbsp; edtSoyad.Text = '';</div><div>&nbsp; }</div><div>&nbsp; else</div><div>&nbsp; &nbsp; ShowMessage('İsim boş olamaz!');</div><div>}</div><div><br></div><div>{</div><div>&nbsp; MyForm = TCLForm.Create(Self);</div><div>&nbsp; GlobalJsonData = '';&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; LayoutInput = MyForm.AddNewLayout(MyForm, 'LayoutInput');</div><div>&nbsp; LayoutInput.Align = alTop;</div><div>&nbsp; LayoutInput.Height = 110;</div><div>&nbsp;&nbsp;</div><div>&nbsp; edtAd = MyForm.AddNewProEdit(LayoutInput, 'edtAd', 'Ad Giriniz...');</div><div>&nbsp; edtAd.Align = alTop;</div><div>&nbsp; edtAd.Height = 40;</div><div>&nbsp; edtAd.Margins.Top = 5;</div><div>&nbsp;&nbsp;</div><div>&nbsp; edtSoyad = MyForm.AddNewProEdit(LayoutInput, 'edtSoyad', 'Soyad Giriniz...');</div><div>&nbsp; edtSoyad.Align = alTop;</div><div>&nbsp; edtSoyad.Height = 40;</div><div>&nbsp; edtSoyad.Margins.Top = 5;</div><div>&nbsp;&nbsp;</div><div>&nbsp; btnEkle = MyForm.AddNewProButton(LayoutInput, 'btnEkle', 'JSON İLE EKLE');</div><div>&nbsp; btnEkle.Align = alRight;</div><div>&nbsp; btnEkle.Width = 120;</div><div>&nbsp; btnEkle.Margins.Right = 5;</div><div>&nbsp; btnEkle.Margins.Top = 5;</div><div>&nbsp; MyForm.AddNewEvent(btnEkle, tbeOnClick, 'ButonaTiklandi');</div><div><br></div><div>&nbsp; MyGrid = MyForm.AddNewStringGrid(MyForm, 'MyGrid');</div><div>&nbsp; MyGrid.Align = alClient;</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; MyForm.Run;</div><div>}</div>]]>
   </description>
   <pubDate>Mon, 16 Feb 2026 09:46:44 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1334&amp;PID=2992#2992</guid>
  </item> 
  <item>
   <title><![CDATA[Tablo : Sat&#305;r ve s&#252;tun say&#305;s&#305;n&#305; veri girmeden...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1334&amp;PID=2984#2984</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=371">Melih</a><br /><strong>Konu:</strong> 1334<br /><strong>Gönderim Zamanı:</strong> 13&nbsp;Şubat&nbsp;2026 Saat 21:10<br /><br />Satır ve sütun sayısını veri girmeden önce belirleyebileceğim bir tablo bileşeni var mı? StringGrid'e baktığımda böyle bir özellik bulamadım.]]>
   </description>
   <pubDate>Fri, 13 Feb 2026 21:10:47 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1334&amp;PID=2984#2984</guid>
  </item> 
 </channel>
</rss>