<?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 : Çok ekranlı uygulama yapımı</title>
  <link>https://www.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Genel &#304;&#351;lemler : Çok ekranlı uygulama yapımı]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Tue, 14 Apr 2026 15:09:14 +0000</pubDate>
  <lastBuildDate>Wed, 09 Aug 2023 16:52:07 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.07</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://www.clomosy.com.tr/RSS_post_feed.asp?TID=559</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Clomosy | Forum]]></title>
   <url>https://www.clomosy.com.tr/forum_images/logo.png</url>
   <link>https://www.clomosy.com.tr/</link>
  </image>
  <item>
   <title><![CDATA[Çok ekranlı uygulama yapımı : Tamam, burda: Var MainForm: TclForm;...]]></title>
   <link>https://www.clomosy.com.tr/forum_posts.asp?TID=559&amp;PID=721#721</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://www.clomosy.com.tr/member_profile.asp?PF=133">Alforce</a><br /><strong>Konu:</strong> 559<br /><strong>Gönderim Zamanı:</strong> 09&nbsp;Ağustos&nbsp;2023 Saat 16:52<br /><br />Tamam, burda:<div><table width="99%"><tr><td><pre class="BBcode"></div><div><div><b>Var</b></div><div>&nbsp; MainForm: TclForm;</div><div>&nbsp; MyForm: TclForm;</div><div>&nbsp; i: Integer;</div><div>&nbsp; But1, startBtn: TclButton;</div><div><br></div><div><b>Procedure </b>StartBtnOnClick;</div><div><b>Begin&nbsp; &nbsp;&nbsp;</b></div><div>&nbsp; <b>For </b>i:= 1 <b>to </b>6 <b>do</b></div><div>&nbsp; &nbsp; <b>Case </b>i <b>of</b></div><div>&nbsp; &nbsp; &nbsp; 1:ShowMessage('Hello World');</div><div>&nbsp; &nbsp; &nbsp; 2:ShowMessage('Number 2');</div><div>&nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; <b>else </b>ShowMessage('Others=&gt; counter: '+IntToStr(I));</div><div>&nbsp; &nbsp; <b>End</b>;&nbsp;</div><div><b>End</b>;</div><div><br></div><div><b>Procedure </b>But1Click;</div><div><b>begin</b></div><div>&nbsp; MyForm:= TclForm.Create(Self);</div><div><br></div><div>&nbsp; startBtn:= MyForm.AddNewButton(MyForm,'startBtn','SHOW');</div><div>&nbsp; startBtn.TextSettings.Font.Size:=50;</div><div>&nbsp; startBtn.Align:= alCenter;</div><div>&nbsp; startBtn.Height:= 50;</div><div>&nbsp; startBtn.Width:= 100;</div><div>&nbsp; MyForm.AddNewEvent(startBtn,tbeOnClick,'StartBtnOnClick');</div><div><br></div><div>&nbsp; MyForm.Run;</div><div><b>end</b>;</div><div><br></div><div><b>begin</b></div><div>&nbsp; MainForm:= TclForm.Create(Self);</div><div><br></div><div>&nbsp; But1:= MainForm.AddNewButton(MainForm,'But1','Button1');</div><div>&nbsp; MainForm.AddNewEvent(But1,tbeOnClick,'But1Click');</div><div><br></div><div>&nbsp; MainForm.Run;</div><div><b>end</b>;</div></div><div></pre></td></tr></table></div><span style="font-size:10px"><br /><br />Düzenleyen Alforce - 09&nbsp;Ağustos&nbsp;2023 Saat 16:53</span>]]>
   </description>
   <pubDate>Wed, 09 Aug 2023 16:52:07 +0000</pubDate>
   <guid isPermaLink="true">https://www.clomosy.com.tr/forum_posts.asp?TID=559&amp;PID=721#721</guid>
  </item> 
  <item>
   <title><![CDATA[Çok ekranlı uygulama yapımı : &#214;rne&#287;in bu kodun but1 e bas&#305;nca...]]></title>
   <link>https://www.clomosy.com.tr/forum_posts.asp?TID=559&amp;PID=720#720</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://www.clomosy.com.tr/member_profile.asp?PF=126">BerkayDuru</a><br /><strong>Konu:</strong> 559<br /><strong>Gönderim Zamanı:</strong> 09&nbsp;Ağustos&nbsp;2023 Saat 16:43<br /><br />Örneğin bu kodun but1 e basınca çalışması için ne yapılmalı.<div><br></div><div><pre style="font-family: monospace, monospace; line-height: 1.3; : rgb248, 249, 250; border: 1px solid rgb234, 236, 240; padding: 1em; text-wrap: wrap; overflow-x: ; overflow-wrap: break-word; font-size: 14px;"><b>var</b>   MyForm:TclForm;   I:integer;   startBtn:TCLButton;<br>   <b>Procedure</b> StartBtnOnClick;   <b>begin</b>        for I&nbsp;:= 1 to 6 do    begin      case I of        1:ShowMessage('Hello World');        2:ShowMessage('Number 2');        else        begin          ShowMessage('Others=&gt; counter: '+IntToStr(I));        end;      end;    end;      <b>end;</b><br><b>begin</b>  MyForm&nbsp;:= TclForm.Create(Self);<br>  startBtn:= MyForm.AddNewButton(MyForm,'startBtn','SHOW');  startBtn.TextSettings.Font.Size:=50;  startBtn.Align&nbsp;:= alCenter;  startBtn.Height&nbsp;:= 50;  startBtn.Width&nbsp;:= 100;  MyForm.AddNewEvent(startBtn,tbeOnClick,'StartBtnOnClick');<br>  MyForm.Run;<b>end;</b></pre></div>]]>
   </description>
   <pubDate>Wed, 09 Aug 2023 16:43:54 +0000</pubDate>
   <guid isPermaLink="true">https://www.clomosy.com.tr/forum_posts.asp?TID=559&amp;PID=720#720</guid>
  </item> 
  <item>
   <title><![CDATA[Çok ekranlı uygulama yapımı : Demek istedi&#287;inizi tam anlayamad&#305;m.San&#305;r&#305;m...]]></title>
   <link>https://www.clomosy.com.tr/forum_posts.asp?TID=559&amp;PID=719#719</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://www.clomosy.com.tr/member_profile.asp?PF=133">Alforce</a><br /><strong>Konu:</strong> 559<br /><strong>Gönderim Zamanı:</strong> 09&nbsp;Ağustos&nbsp;2023 Saat 16:29<br /><br />Demek istediğinizi tam anlayamadım.<div><br></div><div>Sanırım sorununuz bir prosedürü açıklamadan kullanmak.</div><div>Bir metodu kullanmadan önce kodunu yazmalısınız.</div><div><br></div><div>Kodunuzu paylaşırsanız daha çok yardımcı olabilirim.</div><span style="font-size:10px"><br /><br />Düzenleyen Alforce - 09&nbsp;Ağustos&nbsp;2023 Saat 16:30</span>]]>
   </description>
   <pubDate>Wed, 09 Aug 2023 16:29:29 +0000</pubDate>
   <guid isPermaLink="true">https://www.clomosy.com.tr/forum_posts.asp?TID=559&amp;PID=719#719</guid>
  </item> 
  <item>
   <title><![CDATA[Çok ekranlı uygulama yapımı : Bunu kendim de denemi&#351;tim ama...]]></title>
   <link>https://www.clomosy.com.tr/forum_posts.asp?TID=559&amp;PID=718#718</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://www.clomosy.com.tr/member_profile.asp?PF=126">BerkayDuru</a><br /><strong>Konu:</strong> 559<br /><strong>Gönderim Zamanı:</strong> 09&nbsp;Ağustos&nbsp;2023 Saat 16:25<br /><br />Bunu kendim de denemiştim ama bu formatta "Procedure But1Click" içine kendi formumu koyduğum zaman ilk prosedürümün olduğu yerde syntax hatası alıyorum.&nbsp;<div>Nasıl bir kullanım yapmalıyım ?&nbsp;</div><div>İçi boş form değil de içinde herhangi bir procedure olan form koyarak bir örnek yapabilir misiniz.</div>]]>
   </description>
   <pubDate>Wed, 09 Aug 2023 16:25:00 +0000</pubDate>
   <guid isPermaLink="true">https://www.clomosy.com.tr/forum_posts.asp?TID=559&amp;PID=718#718</guid>
  </item> 
  <item>
   <title><![CDATA[Çok ekranlı uygulama yapımı : Bu asl&#305;nda &#231;ok ekranl&#305; de&#287;il,...]]></title>
   <link>https://www.clomosy.com.tr/forum_posts.asp?TID=559&amp;PID=717#717</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://www.clomosy.com.tr/member_profile.asp?PF=133">Alforce</a><br /><strong>Konu:</strong> 559<br /><strong>Gönderim Zamanı:</strong> 09&nbsp;Ağustos&nbsp;2023 Saat 15:51<br /><br />Bu aslında çok ekranlı değil, çok formlu bir yapı olur.<div><br></div><div>Her form için yeni bir unite ihtiyacınız yok.</div><div><br></div><div>Tek unit içinde istediğiniz kadar form kullanabilirsiniz:</div><div><table width="99%"><tr><td><pre class="BBcode"></div><div><div>Var</div><div>&nbsp; MyForm: TclForm;</div><div>&nbsp; SecondaryForm: TclForm;</div><div>&nbsp; TertiaryForm: TclForm;</div><div>&nbsp; But1, But2: TclButton;</div><div><br></div><div>Procedure But1Click;</div><div>Begin</div><div>&nbsp; SecondaryForm:= TclForm.Create(Self);</div><div>&nbsp; SecondaryForm.Run;</div><div>End;</div><div><br></div><div>Procedure But2Click;</div><div>Begin</div><div>&nbsp; TertiaryForm:= TclForm.Create(Self);</div><div>&nbsp; TertiaryForm.Run;</div><div>End;</div><div><br></div><div>Begin</div><div>&nbsp; MyForm:= TclForm.Create(Self);</div><div>&nbsp;&nbsp;</div><div>&nbsp; But1:= MyForm.AddNewButton(MyForm, 'but1', 'Button1');</div><div>&nbsp; But1.Align:= alLeft;</div><div>&nbsp; MyForm.AddNewEvent(But1, tbeOnClick, 'But1Click');</div><div>&nbsp;&nbsp;</div><div>&nbsp; But2:= MyForm.AddNewButton(MyForm, 'but2', 'Button2');</div><div>&nbsp; But2.Align:= alRight;</div><div>&nbsp; MyForm.AddNewEvent(But2, tbeOnClick, 'But2Click');</div><div>&nbsp;&nbsp;</div><div>&nbsp; MyForm.Run;</div><div>End;</div></div><div></pre></td></tr></table></div>]]>
   </description>
   <pubDate>Wed, 09 Aug 2023 15:51:05 +0000</pubDate>
   <guid isPermaLink="true">https://www.clomosy.com.tr/forum_posts.asp?TID=559&amp;PID=717#717</guid>
  </item> 
  <item>
   <title><![CDATA[Çok ekranlı uygulama yapımı : Daha &#246;nce rununit kullanarak 2...]]></title>
   <link>https://www.clomosy.com.tr/forum_posts.asp?TID=559&amp;PID=716#716</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://www.clomosy.com.tr/member_profile.asp?PF=126">BerkayDuru</a><br /><strong>Konu:</strong> 559<br /><strong>Gönderim Zamanı:</strong> 09&nbsp;Ağustos&nbsp;2023 Saat 14:23<br /><br />Daha önce rununit kullanarak 2 ekranlı bir uygulama yapmıştım. Şimdi her ekran için unit kullanmadan ileri geri tuşları ekleyerek çok ekranlı bir uygulama yapmak istiyorum nasıl bir yapı kullanabilirim.<div><br><div>(Örneğin ana ekranımda 5 tane buton bulunacak her buton farklı bir sayfa açacak.)</div></div>]]>
   </description>
   <pubDate>Wed, 09 Aug 2023 14:23:42 +0000</pubDate>
   <guid isPermaLink="true">https://www.clomosy.com.tr/forum_posts.asp?TID=559&amp;PID=716#716</guid>
  </item> 
 </channel>
</rss>