<?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 : Syntax Error</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Genel &#304;&#351;lemler : Syntax Error]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 04 May 2026 14:55:48 +0000</pubDate>
  <lastBuildDate>Tue, 08 Jul 2025 15:54:06 +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=1068</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[Syntax Error : Merhaba Sude,Syntax hatas&#305;n&#305;n...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1068&amp;PID=2146#2146</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=142">BilalCndn</a><br /><strong>Konu:</strong> 1068<br /><strong>Gönderim Zamanı:</strong> 08&nbsp;Temmuz&nbsp;2025 Saat 15:54<br /><br />Merhaba Sude,<div><br></div><div>Syntax hatasının sebebi 67. satırdaki if için süslü parantez açıp kapatmamış olman.<br>Bunun dışında da aşağıdaki hatalar var.<br>23. Satır -&gt; <table width="99%"><tr><td><pre class="BBcode">Clomosy.DBSQLiteQuery.Open;</pre></td></tr></table> -&gt; <table width="99%"><tr><td><pre class="BBcode">Clomosy.DBSQLiteQuery.OpenOrExecute;</pre></td></tr></table></div><div>95. Satır -&gt; <table width="99%"><tr><td><pre class="BBcode">titleLabel.clProSettings.TextSettings.FontHorzAlign = palCenter;</pre></td></tr></table> -&gt; <table width="99%"><tr><td><pre class="BBcode">titleLabel.clProSettings.FontHorzAlign = palCenter;</pre></td></tr></table></div><div><br></div><div>İyi çalışmalar dilerim.</div>]]>
   </description>
   <pubDate>Tue, 08 Jul 2025 15:54:06 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1068&amp;PID=2146#2146</guid>
  </item> 
  <item>
   <title><![CDATA[Syntax Error : merhaba a&#351;a&#287;&#305;daki kodda en son...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1068&amp;PID=2143#2143</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=310">Sudesigirci</a><br /><strong>Konu:</strong> 1068<br /><strong>Gönderim Zamanı:</strong> 08&nbsp;Temmuz&nbsp;2025 Saat 14:47<br /><br /><div>merhaba aşağıdaki kodda en son satırda anlamlandıramadığım bir sytanx error alıyorum şimdiden yardımlarınız için teşekkür ederim&nbsp;&nbsp;</div><div><br></div><div>var</div><div>&nbsp; KayitForm: TclStyleForm;</div><div>&nbsp; nameEdit, surnameEdit, emailEdit, passwordEdit: TclProEdit;</div><div>&nbsp; kayitButton: TClProButton;</div><div>&nbsp; titleLabel: TClProLabel;</div><div><br></div><div>function IsValidAndUniqueEmail(mail: String): Boolean;</div><div>var atPos, dotPos, adetInt: Integer;</div><div>{</div><div>&nbsp; atPos = Pos('@', mail);</div><div>&nbsp; dotPos = Pos('.', mail);</div><div><br></div><div>&nbsp; if (atPos &lt;= 1 || dotPos &lt;= atPos + 1 || dotPos &gt;= Length(mail)) {</div><div>&nbsp; &nbsp; ShowMessage('Geçerli bir e-posta adresi giriniz.');</div><div>&nbsp; &nbsp; Result = False;</div><div>&nbsp; &nbsp; exit;</div><div>&nbsp; }</div><div><br></div><div>&nbsp; try</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.SQL.Text =&nbsp;</div><div>&nbsp; &nbsp; &nbsp; 'SELECT COUNT(*) as adet FROM Users WHERE Email = ' + QuotedStr(mail);</div><div><br></div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.Open;&nbsp;</div><div>&nbsp; &nbsp;adetInt = 0;</div><div>&nbsp; &nbsp; if not Clomosy.DBSQLiteQuery.Eof</div><div>&nbsp; &nbsp; &nbsp;adetInt = Clomosy.DBSQLiteQuery.FieldByName('adet').AsInteger;</div><div><br></div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.Close;</div><div><br></div><div>&nbsp; &nbsp; if (adetInt &gt; 0) {</div><div>&nbsp; &nbsp; &nbsp; ShowMessage('Bu e-posta adresi zaten kayıtlı.');</div><div>&nbsp; &nbsp; &nbsp; Result = False;</div><div>&nbsp; &nbsp; } else {</div><div>&nbsp; &nbsp; &nbsp; Result = True;</div><div>&nbsp; &nbsp; }</div><div><br></div><div>&nbsp; except</div><div>&nbsp; &nbsp;ShowMessage('Exception class: ' + LastExceptionClassName + ' Exception Message: ' + LastExceptionMessage);</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.Close;</div><div>&nbsp; &nbsp; Result = False;</div><div>&nbsp; }</div><div>}</div><div><br></div><div><br></div><div><br></div><div>function CheckBlanks: Boolean;</div><div>{</div><div>&nbsp; if (Trim(nameEdit.Text) == '' || Trim(surnameEdit.Text) == '' ||</div><div>&nbsp; &nbsp; &nbsp; Trim(emailEdit.Text) == '' || Trim(passwordEdit.Text) == '') {</div><div>&nbsp; &nbsp; ShowMessage('Lütfen tüm alanları doldurun.');</div><div>&nbsp; &nbsp; Result = False;</div><div>&nbsp; } else {</div><div>&nbsp; &nbsp; Result = True;</div><div>&nbsp; }</div><div>}</div><div><br></div><div>void ResetFields;</div><div>{</div><div>&nbsp; nameEdit.Text = '';</div><div>&nbsp; surnameEdit.Text = '';</div><div>&nbsp; emailEdit.Text = '';</div><div>&nbsp; passwordEdit.Text = '';</div><div>}</div><div><br></div><div>void KayitOl;</div><div>{</div><div>&nbsp; if (CheckBlanks &amp;&amp; IsValidAndUniqueEmail(emailEdit.Text)) {</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.SQL.Text =&nbsp;</div><div>&nbsp; &nbsp; &nbsp; 'INSERT INTO Users (Email, FirstName, LastName, Password) VALUES (' +</div><div>&nbsp; &nbsp; &nbsp; QuotedStr(emailEdit.Text) + ',' +</div><div>&nbsp; &nbsp; &nbsp; QuotedStr(nameEdit.Text) + ',' +</div><div>&nbsp; &nbsp; &nbsp; QuotedStr(surnameEdit.Text) + ',' +</div><div>&nbsp; &nbsp; &nbsp; QuotedStr(passwordEdit.Text) + ')';</div><div><br></div><div>&nbsp; &nbsp; try</div><div>&nbsp; &nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;</div><div>&nbsp; &nbsp; &nbsp; ShowMessage('Kayıt başarıyla tamamlandı.');</div><div>&nbsp; &nbsp; &nbsp; ResetFields;</div><div>&nbsp; &nbsp; except</div><div>&nbsp; &nbsp; &nbsp; ShowMessage('Exception class: ' + LastExceptionClassName + ' Exception Message: ' + LastExceptionMessage);</div><div>&nbsp; }</div><div>}</div><div><br></div><div><br></div><div><br></div><div>{</div><div>&nbsp; KayitForm = TclStyleForm.Create(Self);</div><div>&nbsp; KayitForm.SetFormBGImage('<a href="https://i.imgur.com/XYlUQhl.jpeg" target="_blank" rel="nofollow">https://i.imgur.com/XYlUQhl.jpeg</a>');</div><div><br></div><div>&nbsp; titleLabel = KayitForm.AddNewProLabel(KayitForm, 'titleLabel', 'Kayıt Ol');</div><div>&nbsp; titleLabel.Align = alTop;</div><div>&nbsp; titleLabel.Height = 40;</div><div>&nbsp; titleLabel.clProSettings.FontSize = 20;</div><div>&nbsp; titleLabel.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; titleLabel.clProSettings.TextSettings.FontHorzAlign = palCenter;</div><div>&nbsp; titleLabel.SetclProSettings(titleLabel.clProSettings);</div><div><br></div><div>&nbsp; nameEdit = KayitForm.AddNewProEdit(KayitForm, 'nameEdit', 'Adınız');</div><div>&nbsp; nameEdit.Align = alTop;</div><div>&nbsp; nameEdit.Height = 40;</div><div>&nbsp; nameEdit.Margins.Top = 20;</div><div><br></div><div>&nbsp; surnameEdit = KayitForm.AddNewProEdit(KayitForm, 'surnameEdit', 'Soyadınız');</div><div>&nbsp; surnameEdit.Align = alTop;</div><div>&nbsp; surnameEdit.Height = 40;</div><div>&nbsp; surnameEdit.Margins.Top = 10;</div><div><br></div><div>&nbsp; emailEdit = KayitForm.AddNewProEdit(KayitForm, 'emailEdit', 'E-posta adresi');</div><div>&nbsp; emailEdit.Align = alTop;</div><div>&nbsp; emailEdit.Height = 40;</div><div>&nbsp; emailEdit.Margins.Top = 10;</div><div><br></div><div>&nbsp; passwordEdit = KayitForm.AddNewProEdit(KayitForm, 'passwordEdit', 'Şifre');</div><div>&nbsp; passwordEdit.Align = alTop;</div><div>&nbsp; passwordEdit.Height = 40;</div><div>&nbsp; passwordEdit.Password = True;</div><div>&nbsp; passwordEdit.Margins.Top = 10;</div><div>&nbsp; passwordEdit.SetclProSettings(passwordEdit.clProSettings);</div><div>&nbsp;&nbsp;</div><div><br></div><div>&nbsp; kayitButton = KayitForm.AddNewProButton(KayitForm, 'kayitButton', 'Kayıt Ol');</div><div>&nbsp; kayitButton.Align = alTop;</div><div>&nbsp; kayitButton.Height = 45;</div><div>&nbsp; kayitButton.Margins.Top = 20;</div><div>&nbsp; kayitButton.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; kayitButton.clProSettings.FontHorzAlign = palCenter;</div><div>&nbsp; kayitButton.SetclProSettings(kayitButton.clProSettings);</div><div>&nbsp; KayitForm.AddNewEvent(kayitButton, tbeOnClick, 'KayitOl');</div><div><br></div><div>&nbsp; KayitForm.Run;</div><div>}</div><div><br></div>]]>
   </description>
   <pubDate>Tue, 08 Jul 2025 14:47:29 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1068&amp;PID=2143#2143</guid>
  </item> 
 </channel>
</rss>