<?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 : Listviewe veritabanıyla görsel kaydedip çekme</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Genel &#304;&#351;lemler : Listviewe veritabanıyla görsel kaydedip çekme]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 04 May 2026 11:24:50 +0000</pubDate>
  <lastBuildDate>Tue, 23 Jul 2024 11:55:29 +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=711</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[Listviewe veritabanıyla görsel kaydedip çekme : Merhaba Bekir,TclProListView nesnesini...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=711&amp;PID=1109#1109</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=142">BilalCndn</a><br /><strong>Konu:</strong> 711<br /><strong>Gönderim Zamanı:</strong> 23&nbsp;Temmuz&nbsp;2024 Saat 11:55<br /><br />Merhaba Bekir,<div><br></div><div>TclProListView nesnesini kullanarak görsel ekleyebilirsin.</div><div>Detaylı bilgi için:</div><div><a href="https://www.docs.clomosy.com/index.php/TClProListView" target="_blank" rel="nofollow">https://www.docs.clomosy.com/index.php/TClProListView</a><br></div><div><br></div><div>İyi çalışmalar dilerim.</div>]]>
   </description>
   <pubDate>Tue, 23 Jul 2024 11:55:29 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=711&amp;PID=1109#1109</guid>
  </item> 
  <item>
   <title><![CDATA[Listviewe veritabanıyla görsel kaydedip çekme : Var  MyForm:TclForm; dataListView...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=711&amp;PID=1100#1100</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=193">bekirr</a><br /><strong>Konu:</strong> 711<br /><strong>Gönderim Zamanı:</strong> 22&nbsp;Temmuz&nbsp;2024 Saat 18:19<br /><br /><div style=": rgb251, 251, 253;">Var&nbsp; &nbsp;</div><div style=": rgb251, 251, 253;">&nbsp; MyForm:TclForm;</div><div style=": rgb251, 251, 253;">&nbsp; dataListView : TclListView;</div><div style=": rgb251, 251, 253;">&nbsp; Qry : TclSqlQuery;</div><div style=": rgb251, 251, 253;">&nbsp;void SetListView;</div><div style=": rgb251, 251, 253;">&nbsp;{</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp;dataListView = MyForm.AddNewListView(MyForm, 'dataListView');</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp;dataListView.Align = alClient;</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp;dataListView.Margins.Left = 5;</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp;dataListView.Margins.Bottom = 5;</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp;dataListView.Margins.Right = 10;</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp;dataListView.Margins.Top = 5;</div><div style=": rgb251, 251, 253;">&nbsp;}</div><div style=": rgb251, 251, 253;">&nbsp;</div><div style=": rgb251, 251, 253;">&nbsp;void listViewVeriEkle;&nbsp;</div><div style=": rgb251, 251, 253;">&nbsp;{</div><div style=": rgb251, 251, 253;">&nbsp;&nbsp;</div><div style=": rgb251, 251, 253;">&nbsp; Qry.Connection = Clomosy.DBSQLServerConnection;&nbsp;</div><div style=": rgb251, 251, 253;">&nbsp; Qry.SQL.Text = 'SELECT UrunID as RECORD_GUID, UrunAD as&nbsp;</div><div style=": rgb251, 251, 253;">&nbsp; MAIN_TEXT, UrunFIYAT as SIDE_TEXT_BOTTOM from Urun';</div><div style=": rgb251, 251, 253;">&nbsp; Qry.Open;&nbsp;</div><div style=": rgb251, 251, 253;">&nbsp; dataListView.clLoadListViewDataFromDataset(Qry);&nbsp;</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp;&nbsp;</div><div style=": rgb251, 251, 253;">&nbsp;}</div><div style=": rgb251, 251, 253;">&nbsp;</div><div style=": rgb251, 251, 253;">&nbsp;void GetData;</div><div style=": rgb251, 251, 253;">&nbsp;{</div><div style=": rgb251, 251, 253;">&nbsp;&nbsp;</div><div style=": rgb251, 251, 253;">&nbsp; try&nbsp;</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; Qry.Connection = Clomosy.DBSQLServerConnection;</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; Qry.SQL.Text = 'SELECT UrunID as RECORD_GUID,UrunAD as MAIN_TEXT,UrunFIYAT as FOOTER_TEXT FROM Urun';</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; Qry.Open;</div><div style=": rgb251, 251, 253;">&nbsp; except</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; ShowMessage('Exception Class: '+LastExceptionClassName+' Exception GetData Message: '+LastExceptionMessage);</div><div style=": rgb251, 251, 253;">&nbsp; }</div><div style=": rgb251, 251, 253;">&nbsp;}</div><div style=": rgb251, 251, 253;"><br></div><div style=": rgb251, 251, 253;">&nbsp; void SqLInsertData;</div><div style=": rgb251, 251, 253;">&nbsp; {</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; try</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; Clomosy.DBSQLServerQuery.Sql.Text = '</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; INSERT INTO Urun (UrunID, UrunAD, UrunFIYAT) VALUES (1, ''a'',10);</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; INSERT INTO Urun (UrunID, UrunAD, UrunFIYAT) VALUES (2, ''b'',20);</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; INSERT INTO Urun (UrunID, UrunAD, UrunFIYAT) VALUES (3, ''c'',35);</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; INSERT INTO Urun (UrunID, UrunAD, UrunFIYAT) VALUES (4, ''d'',35);</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; INSERT INTO Urun (UrunID, UrunAD, UrunFIYAT) VALUES (5, ''e'',40);';</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; Clomosy.DBSQLServerQuery.ExecSql;</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; ShowMessage('Veri Ekleme Başarılı');</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; except</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp;ShowMessage('Exception Class: '+LastExceptionClassName+' Exception SqLiteInsertData Message: '+LastExceptionMessage);</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; }</div><div style=": rgb251, 251, 253;">&nbsp; }</div><div style=": rgb251, 251, 253;">&nbsp;</div><div style=": rgb251, 251, 253;">&nbsp;</div><div style=": rgb251, 251, 253;">&nbsp;{</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp;</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; &nbsp;</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp;Qry = TclSqlQuery.Create(nil);</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp;Clomosy.DBSQLServerConnect('SQL Server','...','...','...','...',...);&nbsp;</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp;Qry.Connection = Clomosy.DBSQLServerConnection;</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp;</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp;MyForm = TclForm.Create(Self);&nbsp;&nbsp;</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp;SetListView;</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp;GetData;</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp;SqLInsertData;</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp;listViewVeriEkle;&nbsp;</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp;MyForm.Run;</div><div style=": rgb251, 251, 253;">&nbsp;}&nbsp;<br>bu şekilde listview yapısına url ile görsel eklemek istiyorum verdiğiniz base64 çevirme kodlarını kullandım ancak sürekli hata aldım karmaşık bir kod yapısı oldu yardımcı olur musunuz</div>]]>
   </description>
   <pubDate>Mon, 22 Jul 2024 18:19:14 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=711&amp;PID=1100#1100</guid>
  </item> 
 </channel>
</rss>