<?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 : CallerForm</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Genel &#304;&#351;lemler : CallerForm]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 24 Jun 2026 17:14:09 +0000</pubDate>
  <lastBuildDate>Wed, 24 Jun 2026 14:40:51 +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=1555</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[CallerForm : CallerForm Nedir?Clomosy gibi...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1555&amp;PID=3586#3586</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=249">kayra12</a><br /><strong>Konu:</strong> 1555<br /><strong>Gönderim Zamanı:</strong> 24&nbsp;Haziran&nbsp;2026 Saat 14:40<br /><br /><h3 -path-to-node="1"><b -path-to-node="1" -index-in-node="0">CallerForm Nedir?</b></h3><p -path-to-node="2">Clomosy gibi platformlarda yeni bir sayfa (birim) açtığınızda,&nbsp;<b -path-to-node="2" -index-in-node="63">"bu yeni sayfayı açan asıl (ana) formun hangisi olduğunu"</b>&nbsp;aklında tutan referans kodudur. Yani yeni açılan sayfaya, "seni bu form çağırdı" bilgisini verir. &nbsp;// =================================================================</p><p -path-to-node="2">// 1. KISIM: ANA KOD (Projenizin ana sayfasına yapıştırın)</p><p -path-to-node="2">// =================================================================</p><p -path-to-node="2">Var</p><p -path-to-node="2">&nbsp; FormAna: TCLForm;</p><p -path-to-node="2">&nbsp; LblMesaj: TclLabel;</p><p -path-to-node="2">&nbsp; BtnSayfayaGit: TclButton;</p><p -path-to-node="2">&nbsp; BirimGecis: TclUnit;</p><p -path-to-node="2"><br></p><p -path-to-node="2">void HedefSayfayaGit;</p><p -path-to-node="2">{</p><p -path-to-node="2">&nbsp; BirimGecis.UnitName = 'HedefBirim'; // Gidilecek sayfanın adı&nbsp;</p><p -path-to-node="2">&nbsp; BirimGecis.CallerForm = FormAna; &nbsp; &nbsp;// "Seni bu form çağırdı" bilgisini gönderiyoruz</p><p -path-to-node="2">&nbsp; BirimGecis.Run;</p><p -path-to-node="2">}</p><p -path-to-node="2"><br></p><p -path-to-node="2">{</p><p -path-to-node="2">&nbsp; FormAna = TCLForm.Create(Self);</p><p -path-to-node="2">&nbsp; FormAna.clSetCaption('Ana Sayfa');</p><p -path-to-node="2">&nbsp;&nbsp;</p><p -path-to-node="2">&nbsp; BirimGecis = TclUnit.Create;</p><p -path-to-node="2"><br></p><p -path-to-node="2">&nbsp; LblMesaj = FormAna.AddNewLabel(FormAna, 'LblMesaj', 'Henüz mesaj gelmedi...');</p><p -path-to-node="2">&nbsp; LblMesaj.Align = alTop;</p><p -path-to-node="2"><br></p><p -path-to-node="2">&nbsp; BtnSayfayaGit = FormAna.AddNewButton(FormAna, 'BtnSayfayaGit', 'Yeni Sayfayı Aç');</p><p -path-to-node="2">&nbsp; BtnSayfayaGit.Align = alTop;</p><p -path-to-node="2">&nbsp; FormAna.AddNewEvent(BtnSayfayaGit, tbeOnClick, 'HedefSayfayaGit');</p><p -path-to-node="2"><br></p><p -path-to-node="2">&nbsp; FormAna.Run;</p><p -path-to-node="2">}</p><p -path-to-node="2"><br></p><p -path-to-node="2"><br></p><p -path-to-node="2">Var</p><p -path-to-node="2">&nbsp; FormHedef: TCLForm;</p><p -path-to-node="2">&nbsp; EdtMesaj: TclEdit;</p><p -path-to-node="2">&nbsp; BtnGeriDon: TclButton;</p><p -path-to-node="2"><br></p><p -path-to-node="2">void MesajGonderVeGeriDon;</p><p -path-to-node="2">{</p><p -path-to-node="2">&nbsp; LblMesaj.Text = EdtMesaj.Text; // Ana formdaki etikete doğrudan erişip veriyi yazıyoruz</p><p -path-to-node="2">&nbsp; FormHedef.clHide; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;// Bu formu gizliyoruz</p><p -path-to-node="2">&nbsp; CallerForm.clShow; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // Bizi çağıran ana formu ekrana geri getiriyoruz</p><p -path-to-node="2">}</p><p -path-to-node="2"><br></p><p -path-to-node="2">{</p><p -path-to-node="2">&nbsp; FormHedef = TCLForm.Create(Self);</p><p -path-to-node="2">&nbsp; FormHedef.clSetCaption('Hedef Sayfa');</p><p -path-to-node="2"><br></p><p -path-to-node="2">&nbsp; EdtMesaj = TclEdit.Create(FormHedef);</p><p -path-to-node="2">&nbsp; FormHedef.clGetChild(EdtMesaj);</p><p -path-to-node="2">&nbsp; EdtMesaj.Text = 'Buraya mesajınızı yazın...';</p><p -path-to-node="2">&nbsp; EdtMesaj.Align = alTop;</p><p -path-to-node="2"><br></p><p -path-to-node="2">&nbsp; BtnGeriDon = FormHedef.AddNewButton(FormHedef, 'BtnGeriDon', 'Mesajı Gönder ve Geri Dön');</p><p -path-to-node="2">&nbsp; BtnGeriDon.Align = alTop;</p><p -path-to-node="2">&nbsp; FormHedef.AddNewEvent(BtnGeriDon, tbeOnClick, 'MesajGonderVeGeriDon');</p><p -path-to-node="2"><br></p><p -path-to-node="2">&nbsp; FormHedef.Run;</p><p -path-to-node="2">}</p><a href="https://static.cloudflareinsights.com/beac&#111;n.min.js/v833ccba57c9e4d2798f2e76cebdd09a11778172276447" target="_blank" rel="nofollow">https://static.cloudflareinsights.com/beacon.min.js/v833ccba57c9e4d2798f2e76cebdd09a11778172276447"</a> integrity="sha512-57MDmcccJXYtNnH+ZiBwzC4jb2rvgVCEokYN+L/nLlmO8rfYT/gIpW2A569iJ/3b+0UEasghjuZH/ma3wIs/EQ==" 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>Wed, 24 Jun 2026 14:40:51 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1555&amp;PID=3586#3586</guid>
  </item> 
  <item>
   <title><![CDATA[CallerForm : Merhabalar CallerForm nedir ve...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1555&amp;PID=3585#3585</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=465">MehmetOzcan</a><br /><strong>Konu:</strong> 1555<br /><strong>Gönderim Zamanı:</strong> 24&nbsp;Haziran&nbsp;2026 Saat 14:15<br /><br />Merhabalar CallerForm nedir ve kullanımında ne tür avantajlar sağlar? Örneklerle açıklayarak yardımcı olursanız sevnirim. Şimdiden teşekkür ederim.<a href="https://static.cloudflareinsights.com/beac&#111;n.min.js/v833ccba57c9e4d2798f2e76cebdd09a11778172276447" target="_blank" rel="nofollow">https://static.cloudflareinsights.com/beacon.min.js/v833ccba57c9e4d2798f2e76cebdd09a11778172276447"</a> integrity="sha512-57MDmcccJXYtNnH+ZiBwzC4jb2rvgVCEokYN+L/nLlmO8rfYT/gIpW2A569iJ/3b+0UEasghjuZH/ma3wIs/EQ==" 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>Wed, 24 Jun 2026 14:15:27 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1555&amp;PID=3585#3585</guid>
  </item> 
 </channel>
</rss>