<?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 : SQL- DELETE kullanımı</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Genel &#304;&#351;lemler : SQL- DELETE kullanımı]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 04 May 2026 10:52:25 +0000</pubDate>
  <lastBuildDate>Wed, 07 Aug 2024 15:58:46 +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=830</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[SQL- DELETE kullanımı : Hata &#231;&#246;z&#252;ld&#252;. Te&#351;ekk&#252;r ederim....]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=830&amp;PID=1539#1539</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=214">zeynepsimsek</a><br /><strong>Konu:</strong> 830<br /><strong>Gönderim Zamanı:</strong> 07&nbsp;Ağustos&nbsp;2024 Saat 15:58<br /><br />Hata çözüldü. Teşekkür ederim.]]>
   </description>
   <pubDate>Wed, 07 Aug 2024 15:58:46 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=830&amp;PID=1539#1539</guid>
  </item> 
  <item>
   <title><![CDATA[SQL- DELETE kullanımı : Merhaba ZeynepQuery &#246;ncellikler...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=830&amp;PID=1537#1537</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=106">Developer</a><br /><strong>Konu:</strong> 830<br /><strong>Gönderim Zamanı:</strong> 07&nbsp;Ağustos&nbsp;2024 Saat 15:45<br /><br />Merhaba Zeynep<div>Query öncellikler create etmen gerekiyor. Şu linki inceler misin:</div><div><a href="https://www.docs.clomosy.com/index.php/SQL_Server_Queries" target="_blank" rel="nofollow">https://www.docs.clomosy.com/index.php/SQL_Server_Queries</a></div>]]>
   </description>
   <pubDate>Wed, 07 Aug 2024 15:45:17 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=830&amp;PID=1537#1537</guid>
  </item> 
  <item>
   <title><![CDATA[SQL- DELETE kullanımı : Var 	 MyForm:TclForm; Label1,a...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=830&amp;PID=1532#1532</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=214">zeynepsimsek</a><br /><strong>Konu:</strong> 830<br /><strong>Gönderim Zamanı:</strong> 07&nbsp;Ağustos&nbsp;2024 Saat 15:05<br /><br /><div>Var&nbsp; &nbsp;<span style="white-space:pre">	</span></div><div>&nbsp; MyForm:TclForm;</div><div>&nbsp; Label1,adLbl,mekanLbl,zamanLbl,kmLbl,konumLbl,idLbl: TClProLabel;</div><div>&nbsp; ProBtn1,ProBtn2,ProBtn3 : TClProButton;</div><div>&nbsp; ProEdit1,ProEdit2,ProEdit3,ProEdit4,ProEdit5,ProEdit6:TclProEdit;</div><div>&nbsp; ProListView : TClProListView;</div><div>&nbsp; DesignerPanel : TClProListViewDesignerPanel;&nbsp;</div><div>&nbsp; ID,Kisi,Yer,Tarih,KmDegeri,Konum:TClProLabel;</div><div>&nbsp; selectQuery: TclSqlQuery;</div><div>&nbsp;&nbsp;</div><div>&nbsp; void DeleteFromListView;</div><div>&nbsp; {</div><div>&nbsp; &nbsp; try&nbsp;</div><div>&nbsp; &nbsp; &nbsp; selectQuery.SQL.text = 'DELETE KisiBilgileri WHERE ID ='+QuotedStr(ProListView.clSelectedItemData(Cltext));</div><div>&nbsp; &nbsp; &nbsp; selectQuery.ExecSql;</div><div>&nbsp; &nbsp; &nbsp; ShowMessage('Veri Silme Başarılı!');</div><div>&nbsp; &nbsp; &nbsp; //AddDataToListView;</div><div>&nbsp; &nbsp; finally</div><div>&nbsp; &nbsp; &nbsp; selectQuery.Close;&nbsp;</div><div>&nbsp; &nbsp;}</div><div>&nbsp; }</div><div>&nbsp;&nbsp;</div><div>&nbsp; void AddDataToListView;&nbsp;</div><div>&nbsp; &nbsp;{</div><div>&nbsp; &nbsp; &nbsp;try</div><div>&nbsp; &nbsp; &nbsp; &nbsp;selectQuery.SQL.text = 'SELECT ID , Kisi , Yer ,Tarih , KmDegeri , Konum&nbsp; From KisiBilgileri';</div><div>&nbsp; &nbsp; &nbsp; &nbsp;selectQuery.Open;</div><div>&nbsp; &nbsp; &nbsp; &nbsp;if(selectQuery.Found)</div><div>&nbsp; &nbsp; &nbsp; &nbsp;{</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ProListView.ClLoadProListViewDataFromDataset(selectQuery);</div><div>&nbsp; &nbsp; &nbsp; &nbsp;}</div><div>&nbsp; &nbsp; &nbsp; &nbsp;else</div><div>&nbsp; &nbsp; &nbsp; &nbsp;{</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ShowMessage('Kayıt Bulunamadı!');</div><div>&nbsp; &nbsp; &nbsp; &nbsp;}</div><div>&nbsp; &nbsp; &nbsp; except</div><div>&nbsp; &nbsp; &nbsp; &nbsp; ShowMessage('Exception class: '+LastExceptionClassName+' Exception Message: ' +LastExceptionMessage);</div><div>&nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp;}</div><div><br></div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp;void InsertToDatabase;&nbsp; &nbsp;</div><div>&nbsp; &nbsp;{</div><div>&nbsp; &nbsp; try</div><div>&nbsp; &nbsp; &nbsp; &nbsp;Clomosy.DBSQLServerQuery.SQL.text= 'INSERT INTO KisiBilgileri (ID,Kisi,Yer,Tarih,KmDegeri,Konum) VALUES (</div><div>&nbsp; &nbsp; &nbsp; &nbsp;'+ProEdit6.Text+','+QuotedStr(ProEdit1.Text)+', '+QuotedStr(ProEdit2.Text)+','+QuotedStr(ProEdit3.Text)+',</div><div>&nbsp; &nbsp; &nbsp; &nbsp;'+ProEdit4.Text+',&nbsp; '+QuotedStr(ProEdit5.Text)+')';</div><div>&nbsp; &nbsp; &nbsp; &nbsp;Clomosy.DBSQLServerQuery.ExecSql;</div><div>&nbsp; &nbsp; &nbsp; &nbsp;ShowMessage('Veri Ekleme Başarılı.');</div><div>&nbsp; &nbsp; except</div><div>&nbsp; &nbsp; &nbsp; &nbsp;ShowMessage('Exception class: '+LastExceptionClassName+' Exception Message: ' +LastExceptionMessage);</div><div>&nbsp; &nbsp; }</div><div>&nbsp; }</div><div><br></div><div>&nbsp;{</div><div>&nbsp; &nbsp;MyForm = TclForm.Create(Self);</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp;MyForm.SetFormColor('#f5f0f0', '#c3d3da', clGVertical);</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp;ProListView=MyForm.AddNewProListView(MyForm, 'ProListView');</div><div>&nbsp; &nbsp;clComponent.SetupComponent(ProListView,'{"Height" : 150 ,"Width": 150, "Align":"Client","MarginBottom":50,"MarginTop":380,</div><div>&nbsp; &nbsp;"MarginRight":20,"MarginLeft":20, "BackgroundColor":"#92a1aa", "ListType":"cart","ItemHeight" : 50, "BorderColor":"#4c5c67",</div><div>&nbsp; &nbsp;"BorderWidth":2 , "ItemWidth":50 ,"ItemColumnCount" : 1 }');</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp;//ProListView.Properties.ItemSpace = 10;</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp;DesignerPanel=MyForm.AddNewProListViewDesignerPanel(ProListView,'DesignerPanel');</div><div>&nbsp; &nbsp;clComponent.SetupComponent(DesignerPanel,</div><div>&nbsp; &nbsp;'{"Height":140,"Width" : 150,</div><div>&nbsp; &nbsp;"Align" : "alTop",</div><div>&nbsp; &nbsp;"MarginTop" :10,</div><div>&nbsp; &nbsp;"MarginRight":10,</div><div>&nbsp; &nbsp;"MarginLeft":20,</div><div>&nbsp; &nbsp;"MarginBottom":100,</div><div>&nbsp; &nbsp;"BackgroundColor":"#677b98",</div><div>&nbsp; &nbsp;"BorderColor":"#2c5696",</div><div>&nbsp; &nbsp;"TextSize" : 20,</div><div>&nbsp; &nbsp;"BorderWidth":2,</div><div>&nbsp; &nbsp;"RoundHeight":2,</div><div>&nbsp; &nbsp;"RoundWidth":2}');</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp;ID = MyForm.AddNewProLabel(DesignerPanel,'ID','Kişi ID');</div><div>&nbsp; &nbsp;clComponent.SetupComponent(ID,&nbsp;</div><div>&nbsp; &nbsp;'{"Height":25,</div><div>&nbsp; &nbsp; "Width" : 100,</div><div>&nbsp; &nbsp; "MarginRight":540,</div><div>&nbsp; &nbsp; "BackgroundColor":"#a4a5a8",</div><div>&nbsp; &nbsp; "BorderColor":"#7a4848",</div><div>&nbsp; &nbsp; "BorderWidth":2,</div><div>&nbsp; &nbsp; "RoundHeight":2,</div><div>&nbsp; &nbsp; "RoundWidth":2}');</div><div>&nbsp; &nbsp; DesignerPanel.AddPanelObject(ID,Cltext);</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; Kisi = MyForm.AddNewProLabel(DesignerPanel,'Kisi','Kişi Adı');</div><div>&nbsp; &nbsp; clComponent.SetupComponent(Kisi,&nbsp;</div><div>&nbsp; &nbsp;'{"Height":25,</div><div>&nbsp; &nbsp; "Width" : 100,</div><div>&nbsp; &nbsp; "BackgroundColor":"#a4a5a8",</div><div>&nbsp; &nbsp; "MarginRight":320,</div><div>&nbsp; &nbsp; "BorderColor":"#7a4848",</div><div>&nbsp; &nbsp; "BorderWidth":2,</div><div>&nbsp; &nbsp; "RoundHeight":2,</div><div>&nbsp; &nbsp; "RoundWidth":2}');</div><div>&nbsp; &nbsp; DesignerPanel.AddPanelObject(Kisi,Cltext1);</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; Yer = MyForm.AddNewProLabel(DesignerPanel,'Yer','Alındığı Yer');</div><div>&nbsp; &nbsp; clComponent.SetupComponent(Yer,&nbsp;</div><div>&nbsp; &nbsp;'{"Height":25,</div><div>&nbsp; &nbsp; "Width" : 100,</div><div>&nbsp; &nbsp; "BackgroundColor":"#a4a5a8",</div><div>&nbsp; &nbsp; "MarginRight":110,</div><div>&nbsp; &nbsp; "BorderColor":"#7a4848",</div><div>&nbsp; &nbsp; "BorderWidth":2,</div><div>&nbsp; &nbsp; "RoundHeight":2,</div><div>&nbsp; &nbsp; "RoundWidth":2}');</div><div>&nbsp; &nbsp; DesignerPanel.AddPanelObject(Yer,Cltext2);</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; Tarih = MyForm.AddNewProLabel(DesignerPanel,'Tarih','');</div><div>&nbsp; &nbsp; clComponent.SetupComponent(Tarih,&nbsp;</div><div>&nbsp; &nbsp;'{"Height":25,</div><div>&nbsp; &nbsp; "Width" : 100,</div><div>&nbsp; &nbsp; "MarginLeft":100,</div><div>&nbsp; &nbsp; "BackgroundColor":"#a4a5a8",</div><div>&nbsp; &nbsp; "BorderColor":"#7a4848",</div><div>&nbsp; &nbsp; "BorderWidth":2,</div><div>&nbsp; &nbsp; "RoundHeight":2,</div><div>&nbsp; &nbsp; "RoundWidth":2}');</div><div>&nbsp; &nbsp; DesignerPanel.AddPanelObject(Tarih,Cltext3);</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; KmDegeri = MyForm.AddNewProLabel(DesignerPanel,'KmDegeri','');</div><div>&nbsp; &nbsp; clComponent.SetupComponent(KmDegeri,&nbsp;</div><div>&nbsp; &nbsp;'{"Height":25,</div><div>&nbsp; &nbsp; "Width" : 100,</div><div>&nbsp; &nbsp; "BackgroundColor":"#a4a5a8",</div><div>&nbsp; &nbsp; "BorderColor":"#7a4848",</div><div>&nbsp; &nbsp; &nbsp;"MarginLeft":320,</div><div>&nbsp; &nbsp; "BorderWidth":2,</div><div>&nbsp; &nbsp; "RoundHeight":2,</div><div>&nbsp; &nbsp; "RoundWidth":2}');</div><div>&nbsp; &nbsp; DesignerPanel.AddPanelObject(KmDegeri,Cltext4);</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; Konum= MyForm.AddNewProLabel(DesignerPanel,'Konum','');</div><div>&nbsp; &nbsp; clComponent.SetupComponent(Konum,&nbsp;</div><div>&nbsp; &nbsp;'{"Height":25,</div><div>&nbsp; &nbsp; "Width" : 100,</div><div>&nbsp; &nbsp; "MarginTop" :0,</div><div>&nbsp; &nbsp; "MarginRight":0,</div><div>&nbsp; &nbsp; "MarginLeft":540,</div><div>&nbsp; &nbsp; "BackgroundColor":"#a4a5a8",</div><div>&nbsp; &nbsp; "BorderColor":"#7a4848",</div><div>&nbsp; &nbsp; "BorderWidth":2,</div><div>&nbsp; &nbsp; "RoundHeight":2,</div><div>&nbsp; &nbsp; "RoundWidth":2}');</div><div>&nbsp; &nbsp; DesignerPanel.AddPanelObject(Konum,Cltext5);</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; ProListView.SetDesignerPanel(DesignerPanel);&nbsp;&nbsp;</div><div>&nbsp; &nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; &nbsp;idLbl = MyForm.AddNewProLabel(MyForm,'idLbl','Kişi ID:');</div><div>&nbsp; &nbsp;clComponent.SetupComponent(idLbl,'{"MarginBottom":550,"MarginRight":130, "Width" :</div><div>&nbsp; &nbsp;500, "Height":400,"TextColor":"#000000","TextSize":14,"TextVerticalAlign":"center",</div><div>&nbsp; &nbsp;"TextHorizontalAlign":"center"}');</div><div>&nbsp; &nbsp;adLbl = MyForm.AddNewProLabel(MyForm,'adLbl','Kişi İsmi:');</div><div>&nbsp; &nbsp;clComponent.SetupComponent(adLbl,'{"MarginBottom":450,"MarginRight":130, "Width" :</div><div>&nbsp; &nbsp;500, "Height":400,"TextColor":"#000000","TextSize":14,"TextVerticalAlign":"center",</div><div>&nbsp; &nbsp;"TextHorizontalAlign":"center"}');</div><div>&nbsp; &nbsp;mekanLbl = MyForm.AddNewProLabel(MyForm,'mekanLbl','Alındığı Yer:');</div><div>&nbsp; &nbsp;clComponent.SetupComponent(mekanLbl,'{"MarginBottom":350,"MarginRight":145, "Width" :</div><div>&nbsp; &nbsp;500, "Height":400,"TextColor":"#000000","TextSize":14,"TextVerticalAlign":"center",</div><div>&nbsp; &nbsp;"TextHorizontalAlign":"center"}');</div><div>&nbsp; &nbsp;zamanLbl = MyForm.AddNewProLabel(MyForm,'zamanLbl','Alınma Zamanı:');</div><div>&nbsp; &nbsp;clComponent.SetupComponent(zamanLbl,'{"MarginBottom":250,"MarginRight":170, "Width" :</div><div>&nbsp; &nbsp;500, "Height":400,"TextColor":"#000000","TextSize":14,"TextVerticalAlign":"center",</div><div>&nbsp; &nbsp;"TextHorizontalAlign":"center"}');</div><div>&nbsp; &nbsp;kmLbl = MyForm.AddNewProLabel(MyForm,'kmLbl','Km Değeri:');</div><div>&nbsp; &nbsp;clComponent.SetupComponent(kmLbl,'{"MarginBottom":150,"MarginRight":140, "Width" :</div><div>&nbsp; &nbsp;500, "Height":400,"TextColor":"#000000","TextSize":14,"TextVerticalAlign":"center",</div><div>&nbsp; &nbsp;"TextHorizontalAlign":"center"}');</div><div>&nbsp; &nbsp;konumLbl = MyForm.AddNewProLabel(MyForm,'konumLbl','Konumu:');</div><div>&nbsp; &nbsp;clComponent.SetupComponent(konumLbl,'{"MarginBottom":50,"MarginRight":135, "Width" :</div><div>&nbsp; &nbsp;500, "Height":400,"TextColor":"#000000","TextSize":14,"TextVerticalAlign":"center",</div><div>&nbsp; &nbsp;"TextHorizontalAlign":"center"}');</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp;ProBtn1=MyForm.AddNewProButton(MyForm, 'ProBtn1', 'Ekle');</div><div>&nbsp; &nbsp;clComponent.SetupComponent(ProBtn1,'{"caption":"Ekle","MarginTop":70,</div><div>&nbsp; &nbsp;"Width" :50, "Height":35,"RoundHeight":2, "RoundWidth":2,"BorderColor":"#7A3E65","BorderWidth":2}');</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp;ProBtn2=MyForm.AddNewProButton(MyForm, 'ProBtn2', 'Güncelle');</div><div>&nbsp; &nbsp;clComponent.SetupComponent(ProBtn2,'{"caption":"Güncelle","MarginTop":70, "MarginLeft":110,</div><div>&nbsp; &nbsp;"Width" :50, "Height":35,"RoundHeight":2, "RoundWidth":2,"BorderColor":"#7A3E65","BorderWidth":2}');</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp;ProBtn3=MyForm.AddNewProButton(MyForm, 'ProBtn3', 'Sil');</div><div>&nbsp; &nbsp;clComponent.SetupComponent(ProBtn3,'{"caption":"Sil","MarginTop":70,"MarginRight":110,</div><div>&nbsp; &nbsp;"Width" :50, "Height":35,"RoundHeight":2, "RoundWidth":2,"BorderColor":"#7A3E65","BorderWidth":2}');</div><div>&nbsp;&nbsp;</div><div>&nbsp; &nbsp;Label1 = MyForm.AddNewProLabel(MyForm,'Label1','ARAÇ TAKİP UYGULAMASI');</div><div>&nbsp; &nbsp;clComponent.SetupComponent(Label1,'{"Align" : "Center","MarginBottom":630,"Width" :</div><div>&nbsp; &nbsp;500, "Height":400,"TextColor":"#000000","TextSize":20,"TextVerticalAlign":"center",</div><div>&nbsp; &nbsp;"TextHorizontalAlign":"center"}');</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp;ProEdit1=MyForm.AddNewProEdit(MyForm, 'ProEdit1', '');</div><div>&nbsp; &nbsp;clComponent.SetupComponent(ProEdit1,'{"Align" : "Center","MarginBottom":450,"Width" :100</div><div>&nbsp; &nbsp;,"Height":30,"MarginLeft":27}')</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp;ProEdit2=MyForm.AddNewProEdit(MyForm, 'ProEdit2', '');</div><div>&nbsp; &nbsp;clComponent.SetupComponent(ProEdit2,'{"Align" : "Center","MarginBottom":350,"Width" :100</div><div>&nbsp; &nbsp;,"Height":30,"MarginLeft":27}');</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp;ProEdit3=MyForm.AddNewProEdit(MyForm, 'ProEdit3', 'Yıl-Ay-Gün');</div><div>&nbsp; &nbsp;clComponent.SetupComponent(ProEdit3,'{"Align" : "Center","MarginBottom":250,"Width" :100</div><div>&nbsp; &nbsp;,"Height":30,"MarginLeft":27}');</div><div><br></div><div>&nbsp; &nbsp;ProEdit4=MyForm.AddNewProEdit(MyForm, 'ProEdit4', '');</div><div>&nbsp; &nbsp;clComponent.SetupComponent(ProEdit4,'{"Align" : "Center","MarginBottom":150,"Width" :100</div><div>&nbsp; &nbsp;,"Height":30,"MarginLeft":27}');&nbsp; &nbsp;</div><div>&nbsp; // ProEdit4.clTypeOfField=taFloat;</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp;ProEdit5=MyForm.AddNewProEdit(MyForm, 'ProEdit5', '');</div><div>&nbsp; &nbsp;clComponent.SetupComponent(ProEdit5,'{"Align" : "Center","MarginBottom":50,"Width" :100</div><div>&nbsp; &nbsp;,"Height":30,"MarginLeft":27}');&nbsp;&nbsp;</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp;ProEdit6=MyForm.AddNewProEdit(MyForm, 'ProEdit6', '');</div><div>&nbsp; &nbsp;clComponent.SetupComponent(ProEdit6,'{"Align" : "Center","MarginBottom":550,"Width" :100</div><div>&nbsp; &nbsp;,"Height":30,"MarginLeft":27}');&nbsp;</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp;MyForm.AddNewEvent(ProBtn3,tbeOnClick,'DeleteFromListView');</div><div>&nbsp; &nbsp;MyForm.AddNewEvent(ProBtn1,tbeOnClick,'InsertToDatabase');</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp;selectQuery = TclSqlQuery.Create(nil);</div><div>&nbsp; &nbsp;Clomosy.DBSQLServerConnect('SQL Server', 'DESKTOP-T9RHDI8\SQLEXPRESS', 'sa', '1', 'AracTakip', 1433);</div><div>&nbsp; &nbsp;selectQuery.Connection = Clomosy.DBSQLServerConnection;</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp;AddDataToListView;</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp;MyForm.Run;</div><div>&nbsp;}</div><div><br></div>]]>
   </description>
   <pubDate>Wed, 07 Aug 2024 15:05:22 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=830&amp;PID=1532#1532</guid>
  </item> 
  <item>
   <title><![CDATA[SQL- DELETE kullanımı : Merhaba Zeynep,Kodunu payla&#351;&#305;r...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=830&amp;PID=1530#1530</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=106">Developer</a><br /><strong>Konu:</strong> 830<br /><strong>Gönderim Zamanı:</strong> 07&nbsp;Ağustos&nbsp;2024 Saat 15:04<br /><br />Merhaba Zeynep,<div>Kodunu paylaşır mısın?<br><div><br></div></div>]]>
   </description>
   <pubDate>Wed, 07 Aug 2024 15:04:03 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=830&amp;PID=1530#1530</guid>
  </item> 
  <item>
   <title><![CDATA[SQL- DELETE kullanımı : A&#231;&#305;p kapad&#305;m ayn&#305; hatay&#305; al&#305;yorum....]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=830&amp;PID=1527#1527</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=214">zeynepsimsek</a><br /><strong>Konu:</strong> 830<br /><strong>Gönderim Zamanı:</strong> 07&nbsp;Ağustos&nbsp;2024 Saat 14:49<br /><br />Açıp kapadım aynı hatayı alıyorum.]]>
   </description>
   <pubDate>Wed, 07 Aug 2024 14:49:08 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=830&amp;PID=1527#1527</guid>
  </item> 
  <item>
   <title><![CDATA[SQL- DELETE kullanımı : Merhaba ZeynepClomosyLearn Exe...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=830&amp;PID=1526#1526</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=106">Developer</a><br /><strong>Konu:</strong> 830<br /><strong>Gönderim Zamanı:</strong> 07&nbsp;Ağustos&nbsp;2024 Saat 14:47<br /><br />Merhaba Zeynep&nbsp;<div>ClomosyLearn Exe sini açıp kapar mısın?</div>]]>
   </description>
   <pubDate>Wed, 07 Aug 2024 14:47:45 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=830&amp;PID=1526#1526</guid>
  </item> 
  <item>
   <title><![CDATA[SQL- DELETE kullanımı : Sil butonuna bas&#305;nca b&#246;yle bir...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=830&amp;PID=1525#1525</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=214">zeynepsimsek</a><br /><strong>Konu:</strong> 830<br /><strong>Gönderim Zamanı:</strong> 07&nbsp;Ağustos&nbsp;2024 Saat 14:47<br /><br />Sil butonuna basınca böyle bir hata veriyor.&nbsp;]]>
   </description>
   <pubDate>Wed, 07 Aug 2024 14:47:17 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=830&amp;PID=1525#1525</guid>
  </item> 
  <item>
   <title><![CDATA[SQL- DELETE kullanımı :   ]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=830&amp;PID=1522#1522</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=214">zeynepsimsek</a><br /><strong>Konu:</strong> 830<br /><strong>Gönderim Zamanı:</strong> 07&nbsp;Ağustos&nbsp;2024 Saat 14:46<br /><br /><img src="uploads/214/Screenshot_2024-08-07_144035.png" height="791" width="1148" border="0" />]]>
   </description>
   <pubDate>Wed, 07 Aug 2024 14:46:25 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=830&amp;PID=1522#1522</guid>
  </item> 
  <item>
   <title><![CDATA[SQL- DELETE kullanımı : Merhaba ZeynepselectQuery.SQL.text...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=830&amp;PID=1513#1513</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=106">Developer</a><br /><strong>Konu:</strong> 830<br /><strong>Gönderim Zamanı:</strong> 07&nbsp;Ağustos&nbsp;2024 Saat 14:14<br /><br />Merhaba Zeynep&nbsp;<div><div style=": rgb251, 251, 253;">&nbsp;<font color="#ff0000">selectQuery.SQL.text = 'DELETE KisiBilgileri WHERE ID ='</font>QuotedStr(ProListView.clSelectedItemData(Cltext)) ProListView.clSelectedItemData('')</div><div style=": rgb251, 251, 253;"><font color="#ff0000"></font></div><div style=": rgb251, 251, 253;"><br></div></div><div style=": rgb251, 251, 253;">Tabi öncesinde&nbsp;</div><div style=": rgb251, 251, 253;"><span style=": rgb248, 249, 250; font-family: Menlo, C&#111;nsolas, M&#111;naco, &quot;Noto Mono&quot;, &quot;Nimbus Mono L&quot;, monospace; font-size: 15.2px;">MyFOrm.AddNewEvent(</span>ProListView<span style=": rgb248, 249, 250; font-family: Menlo, C&#111;nsolas, M&#111;naco, &quot;Noto Mono&quot;, &quot;Nimbus Mono L&quot;, monospace; font-size: 15.2px;">,tbeOnItemClick,'</span>DeleteFromListView<span style=": rgb248, 249, 250; font-family: Menlo, C&#111;nsolas, M&#111;naco, &quot;Noto Mono&quot;, &quot;Nimbus Mono L&quot;, monospace; font-size: 15.2px;">'); bunu yapmış olman gerekir.</span></div>]]>
   </description>
   <pubDate>Wed, 07 Aug 2024 14:14:01 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=830&amp;PID=1513#1513</guid>
  </item> 
  <item>
   <title><![CDATA[SQL- DELETE kullanımı : void DeleteFromListView; {  try...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=830&amp;PID=1509#1509</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=214">zeynepsimsek</a><br /><strong>Konu:</strong> 830<br /><strong>Gönderim Zamanı:</strong> 07&nbsp;Ağustos&nbsp;2024 Saat 13:49<br /><br /><div><div>void DeleteFromListView;</div><div>&nbsp; {</div><div>&nbsp; &nbsp; try&nbsp;</div><div>&nbsp; &nbsp; &nbsp; selectQuery.SQL.text = 'DELETE KisiBilgileri WHERE ID =' + ProListView.clSelectedItemData(Cltext);</div><div>&nbsp; &nbsp; &nbsp; selectQuery.ExecSql;</div><div>&nbsp; &nbsp; &nbsp; ShowMessage('Veri Silme Başarılı!');</div><div>&nbsp; &nbsp; &nbsp; AddDataToListView;</div><div>&nbsp; &nbsp; finally</div><div>&nbsp; &nbsp; &nbsp; selectQuery.Close;&nbsp;</div><div>&nbsp; }</div></div><div><br></div><div><br></div><div><br></div><div>böyle bir kullanım yapınca syntax hatası veriyor</div><div><br></div><div><br></div><div><br></div><div><div>ID = MyForm.AddNewProLabel(DesignerPanel,'ID','Kişi ID');</div><div>&nbsp; &nbsp;clComponent.SetupComponent(ID,&nbsp;</div><div>&nbsp; &nbsp;'{"Height":25,</div><div>&nbsp; &nbsp; "Width" : 100,</div><div>&nbsp; &nbsp; "MarginRight":540,</div><div>&nbsp; &nbsp; "BackgroundColor":"#a4a5a8",</div><div>&nbsp; &nbsp; "BorderColor":"#7a4848",</div><div>&nbsp; &nbsp; "BorderWidth":2,</div><div>&nbsp; &nbsp; "RoundHeight":2,</div><div>&nbsp; &nbsp; "RoundWidth":2}');</div><div>&nbsp; &nbsp; DesignerPanel.AddPanelObject(ID,Cltext);</div></div>]]>
   </description>
   <pubDate>Wed, 07 Aug 2024 13:49:52 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=830&amp;PID=1509#1509</guid>
  </item> 
 </channel>
</rss>