<?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 : Verilerini ListViewde Kartlara Ayrı Ayrı Yükleme</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Genel &#304;&#351;lemler : Verilerini ListViewde Kartlara Ayrı Ayrı Yükleme]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 04 May 2026 13:13:23 +0000</pubDate>
  <lastBuildDate>Mon, 02 Sep 2024 11:03:20 +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=922</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[Verilerini ListViewde Kartlara Ayrı Ayrı Yükleme : Merhaba Hatice,ListView.clLoad...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=922&amp;PID=1775#1775</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=142">BilalCndn</a><br /><strong>Konu:</strong> 922<br /><strong>Gönderim Zamanı:</strong> 02&nbsp;Eylül&nbsp;2024 Saat 11:03<br /><br />Merhaba Hatice,<div><br></div><div><span style=": rgb251, 251, 253;">ListView.clLoadProListViewDataFromDataset(Qry);</span></div><div>Şeklinde kullanımla doğrudan Dataset ile TclProListView'i birbirine bağlamanı öneririm. Designer panel içerisinde oluşturduğun nesnelerin ismi ile bağlamak istediğin sütunun ismi aynı olmalı.<br><br>Bu şekilde kullandığın zaman tüm verilerin ayrı ayrı kartlarda otomatik olarak oluşması gerekiyor.<br><br>İyi çalışmalar dilerim.</div>]]>
   </description>
   <pubDate>Mon, 02 Sep 2024 11:03:20 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=922&amp;PID=1775#1775</guid>
  </item> 
  <item>
   <title><![CDATA[Verilerini ListViewde Kartlara Ayrı Ayrı Yükleme : GetProductData fonksiyonunda veritaban&#305;ndan...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=922&amp;PID=1774#1774</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=220">Hatice</a><br /><strong>Konu:</strong> 922<br /><strong>Gönderim Zamanı:</strong> 30&nbsp;Ağustos&nbsp;2024 Saat 17:41<br /><br /><div>GetProductData fonksiyonunda veritabanından çektiğim verilerin her birini ekranda ayrı kartlar halinde görüntülemek istiyorum. Ancak şu anda sadece en sonuncu veri ekranda kalıyor. Tüm verileri ayrı kartlarda nasıl gösterebilirim?<br><br>Kodum:<br>void GetProductData;</div><div>{</div><div>&nbsp; selectedUserName = Clomosy.GlobalVariableString;</div><div><br></div><div>&nbsp; try</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; Qry = Clomosy.DBSQLiteQueryWith('SELECT * FROM allPaidsTBL WHERE username = ' + QuotedStr(selectedUserName));</div><div>&nbsp; &nbsp; Qry.OpenOrExecute;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; for h = 0 to Qry.RecordCount {&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; dbProductName = Qry.FieldByName('productname').AsString;</div><div>&nbsp; &nbsp; &nbsp; dbProductCategory =&nbsp; Qry.FieldByName('productcategory').AsString;</div><div>&nbsp; &nbsp; &nbsp; dbProductPrice = Qry.FieldByName('productprice').AsString;</div><div>&nbsp; &nbsp; &nbsp; dbCurrencyType = Qry.FieldByName('currency_type').AsString;</div><div>&nbsp; &nbsp; &nbsp; dbPaidDate = Qry.FieldByName('paid_date').AsString;</div><div>&nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; ListView.clLoadProListViewDataFromDataset(</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Clomosy.ClDataSetFromJSON('&#091;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "productName": "Ürün İsmi: ' + dbProductName + '",</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "productCategory": "Ürün Kategorisi: ' + dbProductCategory + '",</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "productPrice": "Ürün Fiyatı: ' + dbProductPrice + '",</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "currencyType": "Para Birimi: ' + dbCurrencyType + '",</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "boughtDate": "Alım Tarihi: ' + dbPaidDate + '"</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &#093;')</div><div>&nbsp; &nbsp; &nbsp; );</div><div>&nbsp; &nbsp; &nbsp; Qry.Next;</div><div>&nbsp; &nbsp; }</div><div>&nbsp; except</div><div>&nbsp; &nbsp; ShowMessage('Exc class' + LastExceptionClassName + 'Exc' + LastExceptionMessage);</div><div>}<br><br><br></div><div>CreateData fonksiyonum:<br><br><div>void CreateData;</div><div>{</div><div>&nbsp; productName = uVeriListeleme.AddNewProLabel(DesignerPanel, 'productName', '');</div><div>&nbsp; productName.Align = AlVertCenter;</div><div>&nbsp; productName.Margins.Top = -60;</div><div>&nbsp; productName.Margins.Right = 10;</div><div>&nbsp; productName.Margins.Left = 10;</div><div>&nbsp; productName.clProSettings.FontColor = clAlphaColor.clHexToColor('#000000');</div><div>&nbsp; productName.clProSettings.FontSize = 9;</div><div>&nbsp; productName.clProSettings.AutoSize=True;</div><div>&nbsp; productName.clProSettings.WordWrap=True;</div><div>&nbsp; productName.SetclProSettings(productName.clProSettings);</div><div>&nbsp; DesignerPanel.AddPanelObject(productName, clCaption);</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; productCategory = uVeriListeleme.AddNewProLabel(DesignerPanel, 'productCategory', '');</div><div>&nbsp; productCategory.Align = AlVertCenter;</div><div>&nbsp; productCategory.Margins.Top = -20;</div><div>&nbsp; productCategory.Margins.Right = 10;</div><div>&nbsp; productCategory.Margins.Left = 10;</div><div>&nbsp; productCategory.clProSettings.FontColor = clAlphaColor.clHexToColor('#000000');</div><div>&nbsp; productCategory.clProSettings.FontSize = 9;</div><div>&nbsp; productCategory.clProSettings.AutoSize=True;</div><div>&nbsp; productCategory.SetclProSettings(productCategory.clProSettings);</div><div>&nbsp; DesignerPanel.AddPanelObject(productCategory, clText);&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; productPrice = uVeriListeleme.AddNewProLabel(DesignerPanel, 'productPrice', '');</div><div>&nbsp; productPrice.Align = AlVertCenter;</div><div>&nbsp; productPrice.Margins.Top = 5;</div><div>&nbsp; productPrice.Margins.Right = 10;</div><div>&nbsp; productPrice.Margins.Left = 10;</div><div>&nbsp; productPrice.clProSettings.FontColor = clAlphaColor.clHexToColor('#000000');</div><div>&nbsp; productPrice.clProSettings.FontSize = 9;</div><div>&nbsp; productPrice.clProSettings.AutoSize=True;</div><div>&nbsp; productPrice.SetclProSettings(productPrice.clProSettings);</div><div>&nbsp; DesignerPanel.AddPanelObject(productPrice, clText1);&nbsp;</div><div><br></div><div>&nbsp; currencyType = uVeriListeleme.AddNewProLabel(DesignerPanel, 'currencyType', '');</div><div>&nbsp; currencyType.Align = AlVertCenter;</div><div>&nbsp; currencyType.Margins.Top = 15;</div><div>&nbsp; currencyType.Margins.Right = 10;</div><div>&nbsp; currencyType.Margins.Left = 10;</div><div>&nbsp; currencyType.clProSettings.FontColor = clAlphaColor.clHexToColor('#000000');</div><div>&nbsp; currencyType.clProSettings.FontSize = 9;</div><div>&nbsp; currencyType.clProSettings.AutoSize=True;</div><div>&nbsp; currencyType.SetclProSettings(currencyType.clProSettings);</div><div>&nbsp; DesignerPanel.AddPanelObject(currencyType, clText2);&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; boughtDate = uVeriListeleme.AddNewProLabel(DesignerPanel, 'boughtDate', '');</div><div>&nbsp; boughtDate.Align = AlVertCenter;</div><div>&nbsp; boughtDate.Margins.Top = 40;</div><div>&nbsp; boughtDate.Margins.Right = 10;</div><div>&nbsp; boughtDate.Margins.Left = 10;</div><div>&nbsp; boughtDate.clProSettings.FontColor = clAlphaColor.clHexToColor('#000000');</div><div>&nbsp; boughtDate.clProSettings.FontSize = 9;</div><div>&nbsp; boughtDate.clProSettings.AutoSize=True;</div><div>&nbsp; boughtDate.SetclProSettings(boughtDate.clProSettings);</div><div>&nbsp; DesignerPanel.AddPanelObject(boughtDate, clText3);&nbsp;&nbsp;</div><div>}</div></div><div><br><br><br></div>]]>
   </description>
   <pubDate>Fri, 30 Aug 2024 17:41:49 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=922&amp;PID=1774#1774</guid>
  </item> 
 </channel>
</rss>