<?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 : Hesap Bilgileri hatası</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Genel &#304;&#351;lemler : Hesap Bilgileri hatası]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 13 May 2026 01:50:00 +0000</pubDate>
  <lastBuildDate>Tue, 12 May 2026 22:55:16 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.07</generator>
  <ttl>30</ttl>
  <WebWizForums:feedURL>https://forum.clomosy.com.tr/RSS_post_feed.asp?TID=1533</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[Hesap Bilgileri hatası : hatan&#305;n sebebibir bile&#351;in yanl&#305;&#351;...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1533&amp;PID=3536#3536</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> 1533<br /><strong>Gönderim Zamanı:</strong> 12&nbsp;Mayıs&nbsp;2026 Saat 22:55<br /><br />hatanın sebebi&nbsp;<br><br>bir bileşin yanlış tür olarak kullanmasından kaynaklı genellikle&nbsp;<br><br><br><br><div>var</div><div>&nbsp; FormHesap: TclForm;</div><div>&nbsp; EdtAdSoyad, EdtTC, EdtEmail, EdtTel: TclProEdit;</div><div><br></div><div>void HesapGuncelleAction;</div><div>var</div><div>&nbsp; clRest: TclRest;</div><div>&nbsp; jsonBody: String;</div><div>{</div><div>&nbsp; if (g_KullaniciId &lt;= 0)&nbsp;</div><div>&nbsp; {&nbsp;</div><div>&nbsp; &nbsp; ShowMessage('Oturum hatası.');&nbsp;</div><div>&nbsp; &nbsp; Exit;&nbsp;</div><div>&nbsp; }</div><div><br></div><div>&nbsp; try</div><div>&nbsp; &nbsp; clRest = TclRest.Create;</div><div>&nbsp; &nbsp; try</div><div>&nbsp; &nbsp; &nbsp; clRest.BaseURL = g_ApiUrl + '/api/kullanici-guncelle/' + IntToStr(g_KullaniciId);</div><div>&nbsp; &nbsp; &nbsp; clRest.Method = rmPut;</div><div>&nbsp; &nbsp; &nbsp; clRest.Accept = 'application/json';</div><div>&nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; jsonBody = '{' +</div><div>&nbsp; &nbsp; &nbsp; &nbsp; '"ad_soyad": "' + EdtAdSoyad.Text + '", ' +</div><div>&nbsp; &nbsp; &nbsp; &nbsp; '"tc_no": "' + EdtTC.Text + '", ' +</div><div>&nbsp; &nbsp; &nbsp; &nbsp; '"telefon": "' + EdtTel.Text + '", ' +</div><div>&nbsp; &nbsp; &nbsp; &nbsp; '"eposta": "' + EdtEmail.Text + '"' +</div><div>&nbsp; &nbsp; &nbsp; '}';</div><div>&nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; clRest.AddBody(jsonBody, 'application/json');</div><div>&nbsp; &nbsp; &nbsp; clRest.Execute;</div><div>&nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; if ((clRest.Response &lt;&gt; '') &amp;&amp; (Pos('başarıyla', clRest.Response) &gt; 0))</div><div>&nbsp; &nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; g_AdSoyad = EdtAdSoyad.Text;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; ShowMessage('Güncellendi.');</div><div>&nbsp; &nbsp; &nbsp; &nbsp; FormHesap.Close();</div><div>&nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; &nbsp; else</div><div>&nbsp; &nbsp; &nbsp; &nbsp; ShowMessage('Hata: ' + clRest.Response);</div><div>&nbsp; &nbsp; finally</div><div>&nbsp; &nbsp; &nbsp; clRest.Free;&nbsp;</div><div>&nbsp; &nbsp; }</div><div>&nbsp; except</div><div>&nbsp; &nbsp; ShowMessage('Bağlantı başarısız: ' + LastExceptionMessage);</div><div>&nbsp; }</div><div>}</div><div><br></div><div>void HesapBilgileriAc;&nbsp;</div><div>var&nbsp;</div><div>&nbsp; lytCenterContainer: TclLayout;&nbsp;</div><div>&nbsp; btn: TclProButton;&nbsp;</div><div>{&nbsp;</div><div>&nbsp; FormHesap = TclForm.Create(Self);&nbsp;</div><div>&nbsp; FormHesap.LytTopBar.Visible = False;&nbsp;</div><div>&nbsp; FormHesap.SetFormColor('#F4F6F8', '', clGNone);&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; AltSayfaBaslikEkle(FormHesap, 'Hesap bilgileri');&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; lytCenterContainer = FormHesap.AddNewLayout(FormHesap, 'lytCenterContainer');&nbsp;</div><div>&nbsp; lytCenterContainer.Align = alCenter;&nbsp;</div><div>&nbsp; lytCenterContainer.Width = MainForm.clWidth - 50;&nbsp;</div><div>&nbsp; lytCenterContainer.Height = 450;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; EditGrupEkle(FormHesap, lytCenterContainer, EdtAdSoyad, 'Ad', 'Ad Soyad', g_AdSoyad, 45);&nbsp;</div><div>&nbsp; EditGrupEkle(FormHesap, lytCenterContainer, EdtTC, 'TC', 'TC Kimlik No', g_Tc, 45);&nbsp;</div><div>&nbsp; EditGrupEkle(FormHesap, lytCenterContainer, EdtEmail, 'Mail', 'E-posta', g_Email, 45);&nbsp;</div><div>&nbsp; EditGrupEkle(FormHesap, lytCenterContainer, EdtTel, 'Tel', 'Telefon', g_Telefon, 45);&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; btn = FormHesap.AddNewProButton(lytCenterContainer, 'BtnKaydet', 'Değişiklikleri Kaydet');&nbsp;</div><div>&nbsp; btn.Align = alTop;&nbsp;</div><div>&nbsp; btn.Height = 50;&nbsp;</div><div>&nbsp; btn.Margins.Top = 40;&nbsp;</div><div>&nbsp; btn.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#FFBF00');&nbsp;</div><div>&nbsp; btn.clProSettings.FontColor = clAlphaColor.clHexToColor('#1A2636');</div><div>&nbsp; btn.clProSettings.FontSize = 14;</div><div>&nbsp; btn.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; btn.clProSettings.RoundHeight = 25;&nbsp;</div><div>&nbsp; btn.clProSettings.RoundWidth = 25;</div><div>&nbsp; btn.SetclProSettings(btn.clProSettings);&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; FormHesap.AddNewEvent(btn, tbeOnClick, 'HesapGuncelleAction');&nbsp;</div><div>&nbsp; FormHesap.Run;&nbsp;</div><div>}</div><a href="https://static.cloudflareinsights.com/beac&#111;n.min.js/v8c78df7c7c0f484497ecbca7046644da1771523124516" target="_blank" rel="nofollow">https://static.cloudflareinsights.com/beacon.min.js/v8c78df7c7c0f484497ecbca7046644da1771523124516"</a> integrity="sha512-8DS7rgIrAmghBFwoOTujcf6D9rXvH8xm8JQ1Ja01h9QX8EzXldiszufYa4IFfKdLUKTTrnSFXLDkUEOTrZQ8Qg==" data-cf-beacon="{&quot;version&quot;:&quot;2024.11.0&quot;,&quot;token&quot;:&quot;439455f3e46c40b98dbd42a2f1a954d8&quot;,&quot;r&quot;:1,&quot;server_timing&quot;:{&quot;name&quot;:{&quot;cfCacheStatus&quot;:true,&quot;cfEdge&quot;:true,&quot;cfExtPri&quot;:true,&quot;cfL4&quot;:true,&quot;cfOrigin&quot;:true,&quot;cfSpeedBrain&quot;:true},&quot;location_startswith&quot;:null}}" crossorigin="anonymous">]]>
   </description>
   <pubDate>Tue, 12 May 2026 22:55:16 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1533&amp;PID=3536#3536</guid>
  </item> 
  <item>
   <title><![CDATA[Hesap Bilgileri hatası : procedure HesapGuncelleAction;var...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1533&amp;PID=3533#3533</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=456">zeynepdeniz</a><br /><strong>Konu:</strong> 1533<br /><strong>Gönderim Zamanı:</strong> 12&nbsp;Mayıs&nbsp;2026 Saat 22:46<br /><br />procedure HesapGuncelleAction;<br>var<br>&nbsp; clRest: TclRest;<br>&nbsp; jsonBody: String;<br>begin<br>&nbsp; if g_KullaniciId &lt;= 0 then&nbsp;<br>&nbsp; begin&nbsp;<br>&nbsp; &nbsp; ShowMessage('Oturum hatası.');&nbsp;<br>&nbsp; &nbsp; Exit;&nbsp;<br>&nbsp; end;<br><br>&nbsp; try<br>&nbsp; &nbsp; clRest := TclRest.Create;<br>&nbsp; &nbsp; try<br>&nbsp; &nbsp; &nbsp; clRest.BaseURL := g_ApiUrl + '/api/kullanici-guncelle/' + IntToStr(g_KullaniciId);<br>&nbsp; &nbsp; &nbsp; clRest.Method := rmPut;<br>&nbsp; &nbsp; &nbsp; clRest.Accept := 'application/json';<br>&nbsp; &nbsp; &nbsp;&nbsp;<br>&nbsp; &nbsp; &nbsp; jsonBody := '{' +<br>&nbsp; &nbsp; &nbsp; &nbsp; '"ad_soyad": "' + EdtAdSoyad.Text + '", ' +<br>&nbsp; &nbsp; &nbsp; &nbsp; '"tc_no": "' + EdtTC.Text + '", ' +<br>&nbsp; &nbsp; &nbsp; &nbsp; '"telefon": "' + EdtTel.Text + '", ' +<br>&nbsp; &nbsp; &nbsp; &nbsp; '"eposta": "' + EdtEmail.Text + '"' +<br>&nbsp; &nbsp; &nbsp; '}';<br>&nbsp; &nbsp; &nbsp;&nbsp;<br>&nbsp; &nbsp; &nbsp; clRest.AddBody(jsonBody, 'application/json');<br>&nbsp; &nbsp; &nbsp; clRest.Execute;<br>&nbsp; &nbsp; &nbsp;&nbsp;<br>&nbsp; &nbsp; &nbsp; if (clRest.Response &lt;&gt; '') and (Pos('başarıyla', clRest.Response) &gt; 0) then<br>&nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; g_AdSoyad := EdtAdSoyad.Text;&nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; ShowMessage('Güncellendi.');<br>&nbsp; &nbsp; &nbsp; &nbsp; FormHesap.Close;<br>&nbsp; &nbsp; &nbsp; end<br>&nbsp; &nbsp; &nbsp; else<br>&nbsp; &nbsp; &nbsp; &nbsp; ShowMessage('Hata: ' + clRest.Response);<br>&nbsp; &nbsp; finally<br>&nbsp; &nbsp; &nbsp; clRest.Free;&nbsp;<br>&nbsp; &nbsp; end;<br>&nbsp; except<br>&nbsp; &nbsp; ShowMessage('Bağlantı başarısız: ' + LastExceptionMessage);<br>&nbsp; end;<br>end;<br><br>procedure HesapBilgileriAc;&nbsp;<br>var&nbsp;<br>&nbsp; lytCenterContainer: TclLayout;&nbsp;<br>&nbsp; btn: TclProButton;&nbsp;<br>begin&nbsp;<br>&nbsp; FormHesap := TclForm.Create(Self);&nbsp;<br>&nbsp; FormHesap.LytTopBar.Visible := False;&nbsp;<br>&nbsp; FormHesap.SetFormColor('#F4F6F8', '', clGNone);&nbsp;<br>&nbsp; AltSayfaBaslikEkle(FormHesap, 'Hesap bilgileri'); lytCenterContainer := FormHesap.AddNewLayout(FormHesap, 'lytCenterContainer'); lytCenterContainer.Align := alCenter; lytCenterContainer.Width := MainForm.clWidth - 50; lytCenterContainer.Height := 450;&nbsp;<br>&nbsp; EditGrupEkle(FormHesap, lytCenterContainer, EdtAdSoyad, 'Ad', 'Ad Soyad', g_AdSoyad, 45);&nbsp;<br>&nbsp; EditGrupEkle(FormHesap, lytCenterContainer, EdtTC, 'TC', 'TC Kimlik No', g_Tc, 45);&nbsp;<br>&nbsp; EditGrupEkle(FormHesap, lytCenterContainer, EdtEmail, 'Mail', 'E-posta', g_Email, 45);&nbsp;<br>&nbsp; EditGrupEkle(FormHesap, lytCenterContainer, EdtTel, 'Tel', 'Telefon', g_Telefon, 45);&nbsp;<br>&nbsp; btn := FormHesap.AddNewProButton(lytCenterContainer, 'BtnKaydet', 'Değişiklikleri Kaydet'); btn.Align := alTop;&nbsp;<br>&nbsp; btn.Height := 50;&nbsp;<br>&nbsp; btn.Width := 200;&nbsp;<br>&nbsp; btn.Margins.Top := 40;&nbsp;<br>&nbsp; btn.Margins.Left := 40;&nbsp;<br>&nbsp; btn.Margins.Right := 40;&nbsp;<br>&nbsp; btn.clProSettings.BackgroundColor := clAlphaColor.clHexToColor('#FFBF00');&nbsp;<br>&nbsp; btn.clProSettings.FontColor := clAlphaColor.clHexToColor('#1A2636');<br>&nbsp; btn.clProSettings.FontSize := 14;<br>&nbsp; btn.clProSettings.TextSettings.Font.Style := &#091;fsBold&#093;;<br>&nbsp; btn.clProSettings.RoundHeight := 25;&nbsp;<br>&nbsp; btn.clProSettings.RoundWidth := 25;<br>&nbsp; btn.clProSettings.BorderColor := clAlphaColor.clHexToColor('#E5B100');<br>&nbsp; btn.clProSettings.BorderWidth := 1;<br>&nbsp; btn.SetclProSettings(btn.clProSettings);&nbsp;<br>&nbsp; FormHesap.AddNewEvent(btn, tbeOnClick, 'HesapGuncelleAction');&nbsp;<br>&nbsp; FormHesap.Run;&nbsp;<br>end;<br><br>Hocam Hesap Bilgileri secenegine tıkladığımda ekranda Invalid class typecast hatası alıyorum neden olabilir<br><br><a href="https://static.cloudflareinsights.com/beac&#111;n.min.js/v8c78df7c7c0f484497ecbca7046644da1771523124516" target="_blank" rel="nofollow">https://static.cloudflareinsights.com/beacon.min.js/v8c78df7c7c0f484497ecbca7046644da1771523124516"</a> integrity="sha512-8DS7rgIrAmghBFwoOTujcf6D9rXvH8xm8JQ1Ja01h9QX8EzXldiszufYa4IFfKdLUKTTrnSFXLDkUEOTrZQ8Qg==" data-cf-beacon="{&quot;version&quot;:&quot;2024.11.0&quot;,&quot;token&quot;:&quot;439455f3e46c40b98dbd42a2f1a954d8&quot;,&quot;r&quot;:1,&quot;server_timing&quot;:{&quot;name&quot;:{&quot;cfCacheStatus&quot;:true,&quot;cfEdge&quot;:true,&quot;cfExtPri&quot;:true,&quot;cfL4&quot;:true,&quot;cfOrigin&quot;:true,&quot;cfSpeedBrain&quot;:true},&quot;location_startswith&quot;:null}}" crossorigin="anonymous">]]>
   </description>
   <pubDate>Tue, 12 May 2026 22:46:08 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1533&amp;PID=3533#3533</guid>
  </item> 
 </channel>
</rss>