<?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 : TclProGrid Sütun Boyut ayarlama</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Genel &#304;&#351;lemler : TclProGrid Sütun Boyut ayarlama]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 04 May 2026 10:54:47 +0000</pubDate>
  <lastBuildDate>Tue, 14 Jan 2025 16:45:49 +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=973</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[TclProGrid Sütun Boyut ayarlama : Merhaba Yasarhttps://www.docs....]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=973&amp;PID=1931#1931</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=106">Developer</a><br /><strong>Konu:</strong> 973<br /><strong>Gönderim Zamanı:</strong> 14&nbsp;Ocak&nbsp;2025 Saat 16:45<br /><br />Merhaba Yasar<div><a href="https://www.docs.clomosy.com/index.php?title=TclProGrid" target="_blank" rel="nofollow">https://www.docs.clomosy.com/index.php?title=TclProGrid</a> bu sayfada TClProGrid özelliklere bakabilirsiniz. Yaşadığınız sorunu&nbsp;<span style=": rgb248, 249, 250; color: rgb32, 33, 34; font-family: &quot;Liberati&#111;n Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 13px;">ProGrid1.Options.ColumnSize.Stretch = True; bu özelliği kullanarak aşabilirsiniz.</span></div>]]>
   </description>
   <pubDate>Tue, 14 Jan 2025 16:45:49 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=973&amp;PID=1931#1931</guid>
  </item> 
  <item>
   <title><![CDATA[TclProGrid Sütun Boyut ayarlama : clProGrid de s&#252;tunlar&#305;n boyutlar&#305;n&#305;n...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=973&amp;PID=1928#1928</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=246">yasar</a><br /><strong>Konu:</strong> 973<br /><strong>Gönderim Zamanı:</strong> 09&nbsp;Ocak&nbsp;2025 Saat 17:08<br /><br /><div>clProGrid&nbsp; de sütunların boyutlarının eşit olarak gelmesini istiyorum. Ama soldan başlayarak sıkıştırılmış bir şekilde geliyor. Yardımcı olabilir misiniz?&nbsp;</div><div><br></div><div>Var&nbsp; &nbsp;</div><div>&nbsp; MyForm:TclForm;</div><div>&nbsp; testListview : TClListView;</div><div>&nbsp; Qry : TClSqlQuery;</div><div>&nbsp; &nbsp;clProGrid:TCLProGrid;</div><div>&nbsp; &nbsp;mainVertSB : TclHorzScrollBox;</div><div>&nbsp;&nbsp;</div><div>void AddDataToListview</div><div>{</div><div>&nbsp; &nbsp;try&nbsp;</div><div>&nbsp; &nbsp; &nbsp; Qry.SQL.Text = 'SELECT * FROM TBLGIBVERGIDAIRELIST';</div><div>&nbsp; &nbsp; &nbsp; Qry.Open;</div><div>&nbsp; &nbsp; &nbsp; if (Qry.Found)</div><div>&nbsp; &nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; clProGrid.ConnectDataSet(Qry);</div><div>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; except</div><div>&nbsp; &nbsp; &nbsp; ShowMessage('&#091;01&#093; Exception Class: '+LastExceptionClassName+' Exception Message: '+LastExceptionMessage);</div><div>&nbsp; &nbsp; }</div><div>}</div><div><br></div><div>{</div><div>&nbsp; MyForm = TclForm.Create(Self);</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; clProGrid = MyForm.AddNewProGrid(MyForm,'clProGrid');</div><div>&nbsp; &nbsp; &nbsp; &nbsp; clProGrid.Align = alCenter;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; clProGrid.Width=300;</div><div>&nbsp; &nbsp; &nbsp; &nbsp;// clProGrid.Options.Selection.Mode = smSingleCell;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; clProGrid.AutoSizeColumns(True,80);</div><div>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; MyForm.AddNewEvent(clProGrid,tbeOnProGridCellClick,'');</div><div>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; &nbsp;Qry = TClSqlQuery.Create(nil);</div><div>&nbsp; Clomosy.DBSQLServerConnect('SQL Server', 'DESKTOP-OA0VJ0A', 'sa', '123', 'BITEK', 1433);</div><div>&nbsp; Qry.Connection = Clomosy.DBSQLServerConnection;</div><div>&nbsp;&nbsp;</div><div>&nbsp;AddDataToListview;</div><div>&nbsp; MyForm.Run;</div><div>}</div><div><br></div><div><br></div>]]>
   </description>
   <pubDate>Thu, 09 Jan 2025 17:08:07 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=973&amp;PID=1928#1928</guid>
  </item> 
 </channel>
</rss>