<?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 : hata</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Genel &#304;&#351;lemler : hata]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 04 May 2026 16:13:20 +0000</pubDate>
  <lastBuildDate>Fri, 16 Aug 2024 17:33:31 +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=885</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[hata : hallettim te&#351;ekk&#252;rler ]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=885&amp;PID=1685#1685</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=208">rabiagnbs</a><br /><strong>Konu:</strong> 885<br /><strong>Gönderim Zamanı:</strong> 16&nbsp;Ağustos&nbsp;2024 Saat 17:33<br /><br />hallettim teşekkürler]]>
   </description>
   <pubDate>Fri, 16 Aug 2024 17:33:31 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=885&amp;PID=1685#1685</guid>
  </item> 
  <item>
   <title><![CDATA[hata : burada her zaman de&#287;il bazen giri&#351;...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=885&amp;PID=1684#1684</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=208">rabiagnbs</a><br /><strong>Konu:</strong> 885<br /><strong>Gönderim Zamanı:</strong> 16&nbsp;Ağustos&nbsp;2024 Saat 17:21<br /><br />burada her zaman değil bazen giriş yaparken hata alıyor çalıştırıp bakabilme imkanınız var mı hatayı bulamıyorum:<div><div>var</div><div>&nbsp; anaSayfa, girisSayfa, kayitSayfa: TclStyleForm;</div><div>&nbsp; girisYap, kayitOl: TClProButton;</div><div>&nbsp; database, password : String;</div><div>&nbsp; nameK, nameG, surnameK, surnameG passwordK, passwordG, age, weight, height: TclProEdit;</div><div>&nbsp; girisButton, kayitButton: TClProButton;</div><div>&nbsp; ageK, weightK, heightK: Integer;</div><div>&nbsp; Qry : TClSQLiteQuery;</div><div>&nbsp; Saglik1: TclUnit;</div><div><br></div><div><br></div><div>void KullaniciKontrolEt;</div><div>{</div><div><br></div><div>&nbsp;Qry = Clomosy.DBSQLiteQueryWith('SELECT user_name , user_surname, &nbsp;user_password &nbsp;FROM Users Where user_name = '+ QuotedStr(nameG.Text)+' And user_surname ='+QuotedStr(surnameG.Text)+' And user_password = '+ QuotedStr(passwordG.Text));</div><div>&nbsp;Qry.OpenOrExecute;</div><div><br></div><div>&nbsp;&nbsp;</div><div>&nbsp; if (Qry.Found)</div><div>&nbsp; {</div><div>&nbsp; &nbsp; ShowMessage('Başarılı bir şekilde giriş yapıldı &#9989;');</div><div>&nbsp; &nbsp; girisSayfa.clShow;</div><div>&nbsp; &nbsp; Saglik1.UnitName='Saglik1';</div><div>&nbsp; &nbsp; Saglik1.CallerForm=girisSayfa;</div><div>&nbsp; &nbsp; Saglik1.Run;</div><div>&nbsp; }</div><div>&nbsp; else</div><div>&nbsp; {</div><div>&nbsp; &nbsp; ShowMessage('Kayıt bulunamadı&#10071; Lütfen Kayıt Olun.');</div><div>&nbsp; }</div><div><br></div><div>}</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp;void InsertToDatabase;</div><div>{</div><div><br></div><div>&nbsp; if((Length(nameK.Text)==0) || (Length(surnameK.Text)==0) &nbsp;|| (Length(passwordK.Text)==0) &nbsp;|| &nbsp;(Length(age.Text)==0) || &nbsp;(Length(weight.Text)==0) || &nbsp;(Length(height.Text)==0)) {</div><div>&nbsp; &nbsp; &nbsp; ShowMessage('Bilgiler boş bırakılamaz. Lütfen gerekli bilgileri doldurunuz&#10071;');</div><div>&nbsp; }</div><div>&nbsp;&nbsp;</div><div>&nbsp; else{</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.SQL.Text = 'INSERT INTO Users (user_name, user_surname, user_password, user_age, user_weight, user_height) VALUES ('+QuotedStr(nameK.Text)+',&nbsp;</div><div>&nbsp; &nbsp; '+QuotedStr(surnameK.Text)+', '+QuotedStr(passwordK.Text)+' , '+QuotedStr(age.Text)+', '+QuotedStr(weight.Text)+', '+QuotedStr(height.Text)+')';</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;&nbsp;</div><div>&nbsp; &nbsp; ShowMessage('Başarılı bir şekilde kayıt olundu &#9989;');</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; }</div><div>}</div><div>&nbsp;&nbsp;</div><div>&nbsp; void GirisYap;</div><div>&nbsp; {</div><div>&nbsp; &nbsp; girisSayfa=TclStyleForm.Create(self);</div><div>&nbsp; &nbsp; girisSayfa.SetFormBGImage('<a href="https://i.hizliresim.com/95hry38.jpg" target="_blank" rel="nofollow">https://i.hizliresim.com/95hry38.jpg</a>');</div><div>&nbsp; &nbsp; Saglik1=TclUnit.Create;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; nameG=girisSayfa.AddNewProEdit(girisSayfa, 'nameG', 'İsminiz: ');</div><div>&nbsp; &nbsp; clComponent.SetupComponent(nameG,'{</div><div>&nbsp; &nbsp; "MarginBottom":200,</div><div>&nbsp; &nbsp; "Width" :350,</div><div>&nbsp; &nbsp; "Height":45,</div><div>&nbsp; &nbsp; "RoundHeight":20,</div><div>&nbsp; &nbsp; "RoundWidth":20,</div><div>&nbsp; &nbsp; "BorderColor":"#4857b5",</div><div>&nbsp; &nbsp; "BackgroundColor":"null",</div><div>&nbsp; &nbsp; "TextColor":"#0b202e",</div><div>&nbsp; &nbsp; "BorderWidth":2</div><div>&nbsp; &nbsp; &nbsp; }');</div><div>&nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; surnameG=girisSayfa.AddNewProEdit(girisSayfa, 'surnameG', 'Soyisminiz: ');</div><div>&nbsp; &nbsp; clComponent.SetupComponent(surnameG,'{</div><div>&nbsp; &nbsp; "MarginBottom":50,</div><div>&nbsp; &nbsp; "Width" :350,</div><div>&nbsp; &nbsp; "Height":45,</div><div>&nbsp; &nbsp; "RoundHeight":20,</div><div>&nbsp; &nbsp; "RoundWidth":20,</div><div>&nbsp; &nbsp; "BorderColor":"#4857b5",</div><div>&nbsp; &nbsp; "BackgroundColor":"null",</div><div>&nbsp; &nbsp; "TextColor":"#0b202e",</div><div>&nbsp; &nbsp; "BorderWidth":2</div><div>&nbsp; &nbsp; &nbsp; }');</div><div>&nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; passwordG=girisSayfa.AddNewProEdit(girisSayfa, 'passwordG', 'Şifreniz: ');</div><div>&nbsp; &nbsp; clComponent.SetupComponent(passwordG,'{</div><div>&nbsp; &nbsp; "MarginTop":100,</div><div>&nbsp; &nbsp; "Width" :350,</div><div>&nbsp; &nbsp; "Height":45,</div><div>&nbsp; &nbsp; "RoundHeight":20,</div><div>&nbsp; &nbsp; "RoundWidth":20,</div><div>&nbsp; &nbsp; "BorderColor":"#4857b5",</div><div>&nbsp; &nbsp; "BackgroundColor":"null",</div><div>&nbsp; &nbsp; "TextColor":"#0b202e",</div><div>&nbsp; &nbsp; "BorderWidth":2</div><div>&nbsp; &nbsp; &nbsp; }');</div><div>&nbsp; &nbsp; passwordG.Password = True;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; girisButton = girisSayfa.AddNewProButton(girisSayfa,'girisButton','Giriş Yap');</div><div>&nbsp; &nbsp; clComponent.SetupComponent(girisButton,'</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; "MarginTop":500,</div><div>&nbsp; &nbsp; "MarginBottom":50,</div><div>&nbsp; &nbsp; "Width" :160,</div><div>&nbsp; &nbsp; "Height":40,</div><div>&nbsp; &nbsp; "BackgroundColor":"#4aadb0",</div><div>&nbsp; &nbsp; "TextColor":"#f7fafc",</div><div>&nbsp; &nbsp; "TextSize":14,</div><div>&nbsp; &nbsp; "RoundWidth":20,</div><div>&nbsp; &nbsp; "RoundHeight":20</div><div>&nbsp; &nbsp; &nbsp;}</div><div>&nbsp; &nbsp; ');</div><div><br></div><div>&nbsp; &nbsp; girisSayfa.AddNewEvent(girisButton,tbeOnClick,'KullaniciKontrolEt');</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; girisSayfa.Run;</div><div>&nbsp; }</div><div>&nbsp;&nbsp;</div><div>&nbsp; void KayitOl;</div><div>&nbsp; {</div><div>&nbsp; &nbsp; kayitSayfa=TclStyleForm.Create(self);</div><div>&nbsp; &nbsp; kayitSayfa.SetFormBGImage('<a href="https://i.hizliresim.com/95hry38.jpg" target="_blank" rel="nofollow">https://i.hizliresim.com/95hry38.jpg</a>');</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; database = Clomosy.AppFilesPath + 'ClomosyDatabase.db3';</div><div>&nbsp; &nbsp; password = '';</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; nameK=kayitSayfa.AddNewProEdit(kayitSayfa, 'nameK', 'İsminiz: ');</div><div>&nbsp; &nbsp; clComponent.SetupComponent(nameK,'{</div><div>&nbsp; &nbsp; "MarginBottom":400,</div><div>&nbsp; &nbsp; "Width" :350,</div><div>&nbsp; &nbsp; "Height":45,</div><div>&nbsp; &nbsp; "RoundHeight":20,</div><div>&nbsp; &nbsp; "RoundWidth":20,</div><div>&nbsp; &nbsp; "BorderColor":"#4857b5",</div><div>&nbsp; &nbsp; "BackgroundColor":"null",</div><div>&nbsp; &nbsp; "TextColor":"#0b202e",</div><div>&nbsp; &nbsp; "BorderWidth":2</div><div>&nbsp; &nbsp; &nbsp; }');</div><div>&nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; surnameK=kayitSayfa.AddNewProEdit(kayitSayfa, 'surnameK', 'Soyisminiz: ');</div><div>&nbsp; &nbsp; clComponent.SetupComponent(surnameK,'{</div><div>&nbsp; &nbsp; "MarginBottom":280,</div><div>&nbsp; &nbsp; "Width" :350,</div><div>&nbsp; &nbsp; "Height":45,</div><div>&nbsp; &nbsp; "RoundHeight":20,</div><div>&nbsp; &nbsp; "RoundWidth":20,</div><div>&nbsp; &nbsp; "BorderColor":"#4857b5",</div><div>&nbsp; &nbsp; "BackgroundColor":"null",</div><div>&nbsp; &nbsp; "TextColor":"#0b202e",</div><div>&nbsp; &nbsp; "BorderWidth":2</div><div>&nbsp; &nbsp; &nbsp; }');</div><div>&nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; passwordK=kayitSayfa.AddNewProEdit(kayitSayfa, 'passwordK', 'Şifreniz: ');</div><div>&nbsp; &nbsp; clComponent.SetupComponent(passwordK,'{</div><div>&nbsp; &nbsp; "MarginBottom":160,</div><div>&nbsp; &nbsp; "Width" :350,</div><div>&nbsp; &nbsp; "Height":45,</div><div>&nbsp; &nbsp; "RoundHeight":20,</div><div>&nbsp; &nbsp; "RoundWidth":20,</div><div>&nbsp; &nbsp; "BorderColor":"#4857b5",</div><div>&nbsp; &nbsp; "BackgroundColor":"null",</div><div>&nbsp; &nbsp; "TextColor":"#0b202e",</div><div>&nbsp; &nbsp; "BorderWidth":2</div><div>&nbsp; &nbsp; &nbsp; }');</div><div>&nbsp; &nbsp; passwordK.Password = True;</div><div>&nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; age=kayitSayfa.AddNewProEdit(kayitSayfa, 'age', 'Yaşınız: ');</div><div>&nbsp; &nbsp; clComponent.SetupComponent(age,'{</div><div>&nbsp; &nbsp; "MarginBottom":40,</div><div>&nbsp; &nbsp; "Width" :350,</div><div>&nbsp; &nbsp; "Height":45,</div><div>&nbsp; &nbsp; "RoundHeight":20,</div><div>&nbsp; &nbsp; "RoundWidth":20,</div><div>&nbsp; &nbsp; "BorderColor":"#4857b5",</div><div>&nbsp; &nbsp; "BackgroundColor":"null",</div><div>&nbsp; &nbsp; "TextColor":"#0b202e",</div><div>&nbsp; &nbsp; "BorderWidth":2</div><div>&nbsp; &nbsp; &nbsp; }');</div><div>&nbsp; &nbsp; age.clTypeOfField = taFloat;&nbsp;</div><div><br></div><div>&nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; weight=kayitSayfa.AddNewProEdit(kayitSayfa, 'weight', 'Kilonuz: ');</div><div>&nbsp; &nbsp; clComponent.SetupComponent(weight,'{</div><div>&nbsp; &nbsp; "MarginTop":90,</div><div>&nbsp; &nbsp; "Width" :350,</div><div>&nbsp; &nbsp; "Height":45,</div><div>&nbsp; &nbsp; "RoundHeight":20,</div><div>&nbsp; &nbsp; "RoundWidth":20,</div><div>&nbsp; &nbsp; "BorderColor":"#4857b5",</div><div>&nbsp; &nbsp; "BackgroundColor":"null",</div><div>&nbsp; &nbsp; "TextColor":"#0b202e",</div><div>&nbsp; &nbsp; "BorderWidth":2</div><div>&nbsp; &nbsp; &nbsp; }');</div><div>&nbsp; &nbsp; weight.clTypeOfField = taFloat;&nbsp;</div><div><br></div><div>&nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; height=kayitSayfa.AddNewProEdit(kayitSayfa, 'height', 'Boyunuz(cm): ');</div><div>&nbsp; &nbsp; clComponent.SetupComponent(height,'{</div><div>&nbsp; &nbsp; "MarginTop":220,</div><div>&nbsp; &nbsp; "Width" :350,</div><div>&nbsp; &nbsp; "Height":45,</div><div>&nbsp; &nbsp; "RoundHeight":20,</div><div>&nbsp; &nbsp; "RoundWidth":20,</div><div>&nbsp; &nbsp; "BorderColor":"#4857b5",</div><div>&nbsp; &nbsp; "BackgroundColor":"null",</div><div>&nbsp; &nbsp; "TextColor":"#0b202e",</div><div>&nbsp; &nbsp; "BorderWidth":2</div><div>&nbsp; &nbsp; &nbsp; }');</div><div>&nbsp; &nbsp; height.clTypeOfField = taFloat;&nbsp;</div><div><br></div><div>&nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; kayitButton = kayitSayfa.AddNewProButton(kayitSayfa,'kayitButton','Kayıt Ol');</div><div>&nbsp; &nbsp; clComponent.SetupComponent(kayitButton,'</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; "MarginTop":500,</div><div>&nbsp; &nbsp; "MarginBottom":50,</div><div>&nbsp; &nbsp; "Width" :160,</div><div>&nbsp; &nbsp; "Height":40,</div><div>&nbsp; &nbsp; "BackgroundColor":"#4aadb0",</div><div>&nbsp; &nbsp; "TextColor":"#f7fafc",</div><div>&nbsp; &nbsp; "TextSize":14,</div><div>&nbsp; &nbsp; "RoundWidth":20,</div><div>&nbsp; &nbsp; "RoundHeight":20</div><div>&nbsp; &nbsp; &nbsp;}');</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; kayitSayfa.AddNewEvent(kayitButton, tbeOnClick, 'InsertToDatabase');</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteConnect(database , password); &nbsp;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>/* &nbsp;try</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.Sql.Text = 'CREATE TABLE Users(user_id INTEGER PRIMARY KEY AUTOINCREMENT, user_name Text, &nbsp;user_surname Text, user_password Text, user_age Int, user_weight Int, user_height Int)';</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; ShowMessage('Veri tabanına tablo ekleme işlemi başarılı!');</div><div>&nbsp; except</div><div>&nbsp; &nbsp; ShowMessage('Exception Class: '+LastExceptionClassName+' Exception Message: '+LastExceptionMessage);</div><div>&nbsp; } */</div><div>&nbsp;&nbsp;</div><div>&nbsp;/* try</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteConnect(database , password);</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.Sql.Text = 'Drop TABLE Users';</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; ShowMessage('Veri tabanı silindi!');</div><div>&nbsp; except</div><div>&nbsp; &nbsp; ShowMessage('Exception Class: '+LastExceptionClassName+' Exception Message: '+LastExceptionMessage);</div><div>&nbsp; }*/</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; &nbsp; kayitSayfa.Run;</div><div>&nbsp; }</div><div>&nbsp;</div><div>&nbsp;</div><div>&nbsp;</div><div>{</div><div>&nbsp; anaSayfa=TclStyleForm.Create(self);</div><div>&nbsp; anaSayfa.SetFormBGImage('<a href="https://i.hizliresim.com/v3b3xio.png" target="_blank" rel="nofollow">https://i.hizliresim.com/v3b3xio.png</a>');</div><div>&nbsp;&nbsp;</div><div>&nbsp; girisYap = anaSayfa.AddNewProButton(anaSayfa,'girisYap','Giriş Yap');</div><div>&nbsp; clComponent.SetupComponent(girisYap,'</div><div>&nbsp; {</div><div>&nbsp; "MarginTop":500,</div><div>&nbsp; "MarginBottom":50,</div><div>&nbsp; "Width" :160,</div><div>&nbsp; "Height":40,</div><div>&nbsp; "BackgroundColor":"#4aadb0",</div><div>&nbsp; "TextColor":"#f7fafc",</div><div>&nbsp; "TextSize":14,</div><div>&nbsp; "RoundWidth":20,</div><div>&nbsp; "RoundHeight":20</div><div>&nbsp; }</div><div>&nbsp; ');</div><div>&nbsp; anaSayfa.AddNewEvent(girisYap, tbeOnClick, 'GirisYap');</div><div>&nbsp;&nbsp;</div><div>&nbsp; kayitOl = anaSayfa.AddNewProButton(anaSayfa,'kayitOl','Kayıt Ol');</div><div>&nbsp; clComponent.SetupComponent(kayitOl,'</div><div>&nbsp; {</div><div>&nbsp; "MarginTop":600,</div><div>&nbsp; "MarginBottom":50,</div><div>&nbsp; "Width" :160,</div><div>&nbsp; "Height":40,</div><div>&nbsp; "BackgroundColor":"#4aadb0",</div><div>&nbsp; "TextColor":"#f7fafc",</div><div>&nbsp; "TextSize":14,</div><div>&nbsp; "RoundWidth":20,</div><div>&nbsp; "RoundHeight":20</div><div>&nbsp; }</div><div>&nbsp; ');</div><div>&nbsp; anaSayfa.AddNewEvent(kayitOl,tbeOnClick,'KayitOl');</div><div>&nbsp;&nbsp;</div><div>&nbsp; anaSayfa.Run;</div><div>}</div></div>]]>
   </description>
   <pubDate>Fri, 16 Aug 2024 17:21:51 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=885&amp;PID=1684#1684</guid>
  </item> 
 </channel>
</rss>