<?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 : silinen öğenin gözükmesi</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Genel &#304;&#351;lemler : silinen öğenin gözükmesi]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 04 May 2026 11:25:29 +0000</pubDate>
  <lastBuildDate>Thu, 24 Jul 2025 16:51:10 +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=1130</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[silinen öğenin gözükmesi : Merhaba Dilara,A&#351;a&#287;&#305;da ki kodu...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1130&amp;PID=2341#2341</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> 1130<br /><strong>Gönderim Zamanı:</strong> 24&nbsp;Temmuz&nbsp;2025 Saat 16:51<br /><br />Merhaba Dilara,&nbsp;<br>Aşağıda ki kodu dener misin?<br><br><div>Clomosy.DBSQLiteQuery.SQL.Text = 'DELETE FROM kartlar WHERE id = ' + silinecekId;</div><div>Clomosy.DBSQLiteQuery.OpenOrExecute;</div><div><br></div><div><br></div><div>silinecekPanel = TclProPanel(homeForm.FindComponent('kart_' + silinecekId));</div><div>if (silinecekPanel &lt;&gt; nil) {</div><div>&nbsp; homeForm.RemoveComponent(silinecekPanel);</div><div>}</div>]]>
   </description>
   <pubDate>Thu, 24 Jul 2025 16:51:10 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1130&amp;PID=2341#2341</guid>
  </item> 
  <item>
   <title><![CDATA[silinen öğenin gözükmesi : sil butonuna t&#305;klad&#305;g&#305;mda silmek...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1130&amp;PID=2332#2332</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=320">dilarayaprak</a><br /><strong>Konu:</strong> 1130<br /><strong>Gönderim Zamanı:</strong> 24&nbsp;Temmuz&nbsp;2025 Saat 12:25<br /><br /><div>&nbsp;</div><div><br></div><div>sil butonuna tıkladıgımda silmek istediğim öğe veri tabanından siliyor ancak telefonda geriye gittiğimde tekrardan ekrana geliyor. (o sayfayı kapatıp tekrar girince öğe gözükmüyor)</div><div><br></div><div>homeForm: TclForm;</div><div>&nbsp; vertScrollBox: TclVertScrollBox;</div><div>&nbsp; kartPanel, silPanel: TclProPanel;</div><div>&nbsp; lblText: TclProLabel;</div><div>&nbsp; currentId: String;</div><div>&nbsp; btnSil: TclProButton;</div><div>&nbsp; mainPanel: TclProPanel;</div><div>void SilButonuTiklandi</div><div>var</div><div><br></div><div>&nbsp; btn: TclProButton;</div><div>&nbsp; silinecekId: String;</div><div>{</div><div>&nbsp; btn = TclProButton(homeForm.ClSender);</div><div>&nbsp; silinecekId = btn.Hint;</div><div><br></div><div>&nbsp; try {</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.Close;</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.SQL.Text =</div><div>&nbsp; &nbsp; &nbsp; 'DELETE FROM kartlar WHERE id = ' + silinecekId;</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;</div><div><br></div><div>&nbsp; &nbsp; ShowMessage('Kelime silindi.');</div><div>&nbsp; &nbsp;Clomosy.RunUnit('Homebtn');</div><div>&nbsp; }</div><div>&nbsp; except {</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; }</div><div>}</div><div>}</div><div><br></div><div><br></div><div>{</div><div>&nbsp; homeForm = TclForm.Create(Self);</div><div>&nbsp; homeForm.clSetCaption('Kayıtlı Kelimeler');</div><div>&nbsp; homeForm.SetFormBGImage('<a href="https://i.imgur.com/fPwWs0H.jpeg" target="_blank" rel="nofollow">https://i.imgur.com/fPwWs0H.jpeg</a>');</div><div><br></div><div>&nbsp; vertScrollBox = homeForm.AddNewVertScrollBox(homeForm, '');</div><div>&nbsp; vertScrollBox.Align = alClient;</div><div><br></div><div>&nbsp; Clomosy.DBSQLiteQuery.Close;</div><div>&nbsp; Clomosy.DBSQLiteQuery.SQL.Text =</div><div>&nbsp; &nbsp; 'SELECT id, english, turkish FROM kartlar';</div><div>&nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;</div><div><br></div><div>&nbsp; while (not Clomosy.DBSQLiteQuery.Eof) {</div><div>&nbsp; &nbsp; currentId = Clomosy.DBSQLiteQuery.FieldByName('id').AsString;</div><div><br></div><div>&nbsp; &nbsp; kartPanel = homeForm.AddNewProPanel(vertScrollBox, 'kart_' + currentId);</div><div>&nbsp; &nbsp; kartPanel.Align = alTop;</div><div>&nbsp; &nbsp; kartPanel.Height = 100;</div><div>&nbsp; &nbsp; kartPanel.Margins.Bottom = 10;</div><div>&nbsp; &nbsp; kartPanel.ClProSettings.BackGroundColor =</div><div>&nbsp; &nbsp; clAlphaColor.clHexToColor('#e6e6e6');</div><div>&nbsp; &nbsp; kartPanel.ClProSettings.RoundHeight = 10;</div><div>&nbsp; &nbsp; kartPanel.ClProSettings.RoundWidth = 10;</div><div>&nbsp; &nbsp; kartPanel.SetclProSettings(kartPanel.ClProSettings);</div><div><br></div><div>&nbsp; &nbsp; // İngilizce + Türkçe birlikte</div><div>&nbsp; &nbsp; lblText = homeForm.AddNewProLabel(kartPanel, '', '');</div><div>&nbsp; &nbsp; lblText.Align = alClient;</div><div>&nbsp; &nbsp; lblText.Caption =</div><div>&nbsp; &nbsp; &nbsp; 'EN: ' + Clomosy.DBSQLiteQuery.FieldByName('english').AsString +</div><div>&nbsp; &nbsp; &nbsp; '&nbsp; &nbsp;|&nbsp; &nbsp;TR: ' + Clomosy.DBSQLiteQuery.FieldByName('turkish').AsString;</div><div>&nbsp; &nbsp; lblText.ClProSettings.FontSize = 16;</div><div>&nbsp; &nbsp; lblText.ClProSettings.FontColor =</div><div>&nbsp; &nbsp; &nbsp; clAlphaColor.clHexToColor('#000000');</div><div>&nbsp; &nbsp; lblText.SetclProSettings(lblText.ClProSettings);</div><div><br></div><div>&nbsp; &nbsp; // Sil Panel</div><div>&nbsp; &nbsp; silPanel = homeForm.AddNewProPanel(kartPanel, '');</div><div>&nbsp; &nbsp; silPanel.Align = alRight;</div><div>&nbsp; &nbsp; silPanel.Width = 60;</div><div><br></div><div>&nbsp; &nbsp; btnSil = homeForm.AddNewProButton(silPanel, '', 'Sil');</div><div>&nbsp; &nbsp; btnSil.Align = alClient;</div><div>&nbsp; &nbsp; btnSil.ClProSettings.BackGroundColor =</div><div>&nbsp; &nbsp; &nbsp; clAlphaColor.clHexToColor('#f4bcbc');</div><div>&nbsp; &nbsp; btnSil.SetclProSettings(btnSil.ClProSettings);</div><div><br></div><div>&nbsp; &nbsp; btnSil.Hint = currentId;</div><div><br></div><div>&nbsp; &nbsp; homeForm.AddNewEvent(btnSil, tbeOnClick, 'SilButonuTiklandi');</div><div><br></div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.Next;</div><div>&nbsp; }</div><div><br></div><div>&nbsp;homeForm.Run;</div><div>}</div>]]>
   </description>
   <pubDate>Thu, 24 Jul 2025 12:25:10 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1130&amp;PID=2332#2332</guid>
  </item> 
 </channel>
</rss>