<?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 : EVariantTypeCastError</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Genel &#304;&#351;lemler : EVariantTypeCastError]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 04 May 2026 14:25:01 +0000</pubDate>
  <lastBuildDate>Thu, 26 Jun 2025 14:00:26 +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=1042</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[EVariantTypeCastError : Merhaba Hale,void InsertToDatabase;{...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1042&amp;PID=2081#2081</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> 1042<br /><strong>Gönderim Zamanı:</strong> 26&nbsp;Haziran&nbsp;2025 Saat 14:00<br /><br />Merhaba Hale,&nbsp;<br><div>void InsertToDatabase;</div><div>{</div><div>&nbsp; if ((editBaslangic.Text == '') || (editBitis.Text == '') || (memoDetay.Text == '') || (editYapilan.Text == ''))&nbsp;</div><div>&nbsp; &nbsp; ShowMessage('Lütfen tüm alanları doldurun.');</div><div>&nbsp; &nbsp; else</div><div>{</div><div>&nbsp;&nbsp;</div><div>&nbsp; try {</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.SQL.Text = 'INSERT INTO Logs (username, start_time, end_time, yapilan_is_detay, yapilan_is) VALUES (' +</div><div>&nbsp; &nbsp; &nbsp; QuotedStr(username) + ', ' +</div><div>&nbsp; &nbsp; &nbsp; QuotedStr(editBaslangic.Text) + ', ' +</div><div>&nbsp; &nbsp; &nbsp; QuotedStr(editBitis.Text) + ', ' +</div><div>&nbsp; &nbsp; &nbsp; QuotedStr(memoDetay.Text) + ', ' +</div><div>&nbsp; &nbsp; &nbsp; QuotedStr(editYapilan.Text) + ')';</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;</div><div>&nbsp; &nbsp; ShowMessage('Veriler başarıyla kayıt oldu!');</div><div>&nbsp; &nbsp;&nbsp;</div><div><br></div><div>&nbsp; } except {</div><div>&nbsp; &nbsp; ShowMessage('Hata: ' + LastExceptionMessage);</div><div>&nbsp; }</div><div>}</div><div>}</div><div>}&nbsp;<br>Düzenli hali bu şekilde, sende projen de deneye bilir misin?&nbsp;</div>]]>
   </description>
   <pubDate>Thu, 26 Jun 2025 14:00:26 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1042&amp;PID=2081#2081</guid>
  </item> 
  <item>
   <title><![CDATA[EVariantTypeCastError : Merhaba, yazd&#305;&#287;&#305;m kodda veri taban&#305;na...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1042&amp;PID=2080#2080</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=302">haletr</a><br /><strong>Konu:</strong> 1042<br /><strong>Gönderim Zamanı:</strong> 26&nbsp;Haziran&nbsp;2025 Saat 13:09<br /><br />Merhaba, yazdığım kodda veri tabanına kayıt yaparken boş alan olursa kullanıcıya ShowMessage ile uyarı gönderilmesini istiyorum fakat EVariantTypeCastError&nbsp;Could not convert variant of type (UnicodeString) into type (Boolean) hatası alıyorum. Teşekkür ederim.<div><br></div><div><div>void InsertToDatabase;</div><div>{</div><div>&nbsp; if (editBaslangic.Text)=='' || editBitis.Text=='' || memoDetay.Lines.Count==0 || editYapilan.Text=='') {</div><div>&nbsp; &nbsp; &nbsp; ShowMessage('Lütfen tüm alanları doldurun.');</div><div>&nbsp; }</div><div>&nbsp;&nbsp;</div><div>else {&nbsp;</div><div>&nbsp; try</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.SQL.Text = 'INSERT INTO Logs (username, start_time, end_time, yapilan_is_detay, yapilan_is) VALUES (' +</div><div>&nbsp; &nbsp; &nbsp; QuotedStr(username) + ', ' +</div><div>&nbsp; &nbsp; &nbsp; QuotedStr(editBaslangic.Text) + ', ' +</div><div>&nbsp; &nbsp; &nbsp; QuotedStr(editBitis.Text) + ', ' +</div><div>&nbsp; &nbsp; &nbsp; QuotedStr(memoDetay.Text) + ', ' +</div><div>&nbsp; &nbsp; &nbsp; QuotedStr(editYapilan.Text) + ')';</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;</div><div>&nbsp; &nbsp; ShowMessage('Veriler başarıyla kayıt oldu!');</div><div>&nbsp; editBaslangic.Text='';</div><div>&nbsp; editBitis.Text='';</div><div>&nbsp; memoDetay.Lines.Clear;</div><div>&nbsp; editYapilan.Text='';</div><div>&nbsp;&nbsp;</div><div>&nbsp; except</div><div>&nbsp; &nbsp; ShowMessage('Exception class: ' + LastExceptionClassName + ' Exception Message: ' + LastExceptionMessage);</div><div>&nbsp; }</div><div>&nbsp;}&nbsp;&nbsp;</div><div>}</div></div>]]>
   </description>
   <pubDate>Thu, 26 Jun 2025 13:09:05 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1042&amp;PID=2080#2080</guid>
  </item> 
 </channel>
</rss>