<?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 : hata</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Genel &#304;&#351;lemler : hata]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 06 May 2026 00:54:59 +0000</pubDate>
  <lastBuildDate>Tue, 05 May 2026 21:37:19 +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=1474</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[hata : varForm1 : TclFormTas1 , Tas2...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1474&amp;PID=3361#3361</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=417">osman efe atik</a><br /><strong>Konu:</strong> 1474<br /><strong>Gönderim Zamanı:</strong> 05&nbsp;Mayıs&nbsp;2026 Saat 21:37<br /><br /><div>var</div><div>Form1 : TclForm</div><div>Tas1 , Tas2 , Tas3 , Tas4 , Player1 : TClProImage</div><div>FallTimer , TimeTimer : TCLTimer</div><div>x1 , x2 , x3 , x4 , A , B , C , D : Integer</div><div>TimeLeft : Integer&nbsp;</div><div>BtnLeft , BtnRight : TClProButton</div><div>Label1 : TClProLabel</div><div><br></div><div>void MoveLeft;</div><div>{</div><div>&nbsp; Player1.Position.X = Player1.Position.X - 50;</div><div>}</div><div><br></div><div>void MoveRight;</div><div>{</div><div>&nbsp; Player1.Position.X = Player1.Position.X + 50;</div><div>}</div><div><br></div><div>void timerShow;</div><div>{</div><div>Tas1.Position.Y = Tas1.Position.Y + A</div><div>Tas2.Position.Y = Tas2.Position.Y + B</div><div>Tas3.Position.Y = Tas3.Position.Y + C</div><div>Tas4.Position.Y = Tas4.Position.Y + D</div><div><br></div><div>if(Tas1.Position.Y &gt;= 800)</div><div>{</div><div>A = A+1</div><div>Tas1.Position.Y = Tas1.Position.Y - 800</div><div>Tas1.Position.X = Round(Random()*50)*25</div><div>}</div><div><br></div><div>if(Tas2.Position.Y &gt;= 800)</div><div>{</div><div>B = B+1</div><div>Tas2.Position.Y = Tas2.Position.Y - 800</div><div>Tas2.Position.X = Round(Random()*50)*25</div><div>}</div><div><br></div><div>if(Tas3.Position.Y &gt;= 800)</div><div>{</div><div>C = C+1</div><div>Tas3.Position.Y = Tas3.Position.Y - 800</div><div>Tas3.Position.X = Round(Random()*50)*25</div><div>}</div><div><br></div><div>if(Tas4.Position.Y &gt;= 800)</div><div>{</div><div>D = D+1</div><div>Tas4.Position.Y = Tas4.Position.Y - 800</div><div>Tas4.Position.X = Round(Random()*50)*25</div><div>}</div><div><br></div><div>&nbsp;if (Form1.clIsIntersectsWith(Player1, Tas1))</div><div>&nbsp; &nbsp;{</div><div>&nbsp; &nbsp; &nbsp; FallTimer.Enabled = False</div><div>&nbsp; &nbsp; &nbsp; ShowMessage('Game Over');</div><div>&nbsp; &nbsp; &nbsp; Form1.Close;</div><div>&nbsp; &nbsp;}</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp;if (Form1.clIsIntersectsWith(Player1, Tas2))</div><div>&nbsp; &nbsp;{</div><div>&nbsp; &nbsp; &nbsp; FallTimer.Enabled = False</div><div>&nbsp; &nbsp; &nbsp; ShowMessage('Game Over');</div><div>&nbsp; &nbsp; &nbsp; Form1.Close;</div><div>&nbsp; &nbsp;}</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp;if (Form1.clIsIntersectsWith(Player1, Tas3))</div><div>&nbsp; &nbsp;{</div><div>&nbsp; &nbsp; &nbsp; FallTimer.Enabled = False</div><div>&nbsp; &nbsp; &nbsp; ShowMessage('Game Over');</div><div>&nbsp; &nbsp; &nbsp; Form1.Close;</div><div>&nbsp; &nbsp;}</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp;if (Form1.clIsIntersectsWith(Player1, Tas4))</div><div>&nbsp; &nbsp;{</div><div>&nbsp; &nbsp; &nbsp; FallTimer.Enabled = False</div><div>&nbsp; &nbsp; &nbsp; TimeTimer.Enabled = False</div><div>&nbsp; &nbsp; &nbsp; ShowMessage('Game Over');</div><div>&nbsp; &nbsp; &nbsp; Form1.Close;</div><div>&nbsp; &nbsp;}</div><div>&nbsp; &nbsp;</div><div>}&nbsp;</div><div><br></div><div>void&nbsp; TimeTimerTimer(TObject *Sender)</div><div>{</div><div>&nbsp; &nbsp;Label1.Caption = IntToStr(TimeLeft);</div><div><br></div><div>&nbsp; &nbsp;if(TimeLeft &lt;= 0)</div><div>&nbsp; &nbsp;{</div><div>&nbsp; &nbsp; &nbsp; TimeTimer.Enabled = false;</div><div>&nbsp; &nbsp; &nbsp; FallTimer.Enabled = false;</div><div>&nbsp; &nbsp; &nbsp; ShowMessage("Kazandın");</div><div>&nbsp; &nbsp;}</div><div>&nbsp; &nbsp;TimeLeft = TimeLeft - 1;</div><div>}</div><div><br></div><div><br></div><div>{</div><div>&nbsp; Form1 = TclForm.Create(Self);</div><div>&nbsp; Form1.clSetWindowState(fwsMaximized);</div><div>&nbsp; Form1.BtnGoBack.Visible = False;</div><div>&nbsp; Form1.BtnFormMenu.Visible = False;</div><div>&nbsp; Form1.clSetWindowState(fwsMaximized);</div><div>&nbsp; Form1.SetFormBGImage('<a href="https://resmim.net/cdn/2026/05/04/CoyVNq.jpg" target="_blank" rel="nofollow">https://resmim.net/cdn/2026/05/04/CoyVNq.jpg</a>');</div><div>&nbsp;&nbsp;</div><div>&nbsp; x1&nbsp; = Round(Random()*50)*25</div><div>&nbsp; x2&nbsp; = Round(Random()*50)*25</div><div>&nbsp; x3&nbsp; = Round(Random()*50)*25</div><div>&nbsp; x4&nbsp; = Round(Random()*50)*25</div><div>&nbsp; A = 9;</div><div>&nbsp; B = 10 ;</div><div>&nbsp; C = 11;</div><div>&nbsp; D = 12;</div><div>&nbsp; TimeLeft = 20;</div><div>&nbsp;&nbsp;</div><div>&nbsp; Player1 = Form1.AddNewProImage(Form1, 'Player1');</div><div>&nbsp; Player1.clProSettings.PictureSource = '<a href="https://resmim.net/cdn/2026/04/29/CbMBGW.png" target="_blank" rel="nofollow">https://resmim.net/cdn/2026/04/29/CbMBGW.png</a>';</div><div>&nbsp; Player1.Height = 100;</div><div>&nbsp; Player1.Width = 50;</div><div>&nbsp; Player1.Align = alNone;</div><div>&nbsp; Player1.Position.X = 600;</div><div>&nbsp; Player1.Position.Y = 600;</div><div>&nbsp; Player1.SetclProSettings(Player1.clProSettings);</div><div>&nbsp;&nbsp;</div><div>&nbsp; Tas1 = Form1.AddNewProImage(Form1 , 'Tas1')</div><div>&nbsp; Tas1.clProSettings.PictureSource = '<a href="https://resmim.net/cdn/2026/04/30/CbeqAj.jpg" target="_blank" rel="nofollow">https://resmim.net/cdn/2026/04/30/CbeqAj.jpg</a>'</div><div>&nbsp; Tas1.Height = 50</div><div>&nbsp; Tas1.Width = 50</div><div>&nbsp; Tas1.Align = alNone</div><div>&nbsp; Tas1.Position.X = x1</div><div>&nbsp; Tas1.Position.Y = 0</div><div>&nbsp; Tas1.SetclProSettings(Tas1.clProSettings)</div><div>&nbsp;&nbsp;</div><div>&nbsp; &nbsp; Tas2 = Form1.AddNewProImage(Form1 , 'Tas2')</div><div>&nbsp; Tas2.clProSettings.PictureSource = '<a href="https://resmim.net/cdn/2026/04/30/CbeqAj.jpg" target="_blank" rel="nofollow">https://resmim.net/cdn/2026/04/30/CbeqAj.jpg</a>'</div><div>&nbsp; Tas2.Height = 50</div><div>&nbsp; Tas2.Width = 50</div><div>&nbsp; Tas2.Align = alNone</div><div>&nbsp; Tas2.Position.X = x2</div><div>&nbsp; Tas2.Position.Y = 0</div><div>&nbsp; Tas2.SetclProSettings(Tas2.clProSettings)</div><div>&nbsp;&nbsp;</div><div>&nbsp; &nbsp; Tas3 = Form1.AddNewProImage(Form1 , 'Tas3')</div><div>&nbsp; Tas3.clProSettings.PictureSource = '<a href="https://resmim.net/cdn/2026/04/30/CbeqAj.jpg" target="_blank" rel="nofollow">https://resmim.net/cdn/2026/04/30/CbeqAj.jpg</a>'</div><div>&nbsp; Tas3.Height = 50</div><div>&nbsp; Tas3.Width = 50</div><div>&nbsp; Tas3.Align = alNone</div><div>&nbsp; Tas3.Position.X = x3</div><div>&nbsp; Tas3.Position.Y = 0</div><div>&nbsp; Tas3.SetclProSettings(Tas3.clProSettings)</div><div>&nbsp;&nbsp;</div><div>&nbsp; Tas4 = Form1.AddNewProImage(Form1 , 'Tas4')</div><div>&nbsp; Tas4.clProSettings.PictureSource = '<a href="https://resmim.net/cdn/2026/04/30/CbeqAj.jpg" target="_blank" rel="nofollow">https://resmim.net/cdn/2026/04/30/CbeqAj.jpg</a>'</div><div>&nbsp; Tas4.Height = 50</div><div>&nbsp; Tas4.Width = 50</div><div>&nbsp; Tas4.Align = alNone</div><div>&nbsp; Tas4.Position.X = x4</div><div>&nbsp; Tas4.Position.Y = 0</div><div>&nbsp; Tas4.SetclProSettings(Tas4.clProSettings)</div><div>&nbsp;&nbsp;</div><div>&nbsp; BtnLeft = Form1.AddNewProButton(Form1, 'BtnLeft' , 'Sol')</div><div>&nbsp; BtnLeft.Align = alNone</div><div>&nbsp; BtnLeft.Position.X = 400;</div><div>&nbsp; BtnLeft.Position.Y = 550;</div><div>&nbsp; BtnLeft.ClProSettings.BackgroundColor = ClAlphaColor.ClHextoColor ('#6F130F');</div><div>&nbsp; BtnLeft.SetclProSettings(BtnLeft.ClProSettings);</div><div>&nbsp; Form1.AddNewEvent(BtnLeft, tbeOnClick, 'MoveLeft');</div><div><br></div><div>&nbsp; BtnRight = Form1.AddNewProButton(Form1, 'BtnRight' , 'Sağ')</div><div>&nbsp; BtnRight.Align = alNone</div><div>&nbsp; BtnRight.Position.X = 520;</div><div>&nbsp; BtnRight.Position.Y = 550;</div><div>&nbsp; BtnRight.ClProSettings.BackgroundColor = ClAlphaColor.ClHextoColor ('#6F130F');</div><div>&nbsp; BtnRight.SetclProSettings(BtnRight.ClProSettings);</div><div>&nbsp; Form1.AddNewEvent(BtnRight, tbeOnClick, 'MoveRight');</div><div>&nbsp;&nbsp;</div><div>FallTimer = Form1.AddNewTimer(Form1,'FallTimer', 10);</div><div>FallTimer.Enabled = True;</div><div>Form1.AddNewEvent(FallTimer,tbeOnTimer,'timerShow');</div><div><br></div><div>TimeTimer = Form1.AddNewTimer(Form1,'TimeTimer', 1000);</div><div>TimeTimer.Enabled = True;&nbsp;</div><div>Form1.AddNewEvent(TimeTimer , tbeOnTimer , 'TimeTimerTimer')</div><div><br></div><div>Label1 = Form1.AddNewProLabel(Form1, 'Label1', '');</div><div>Label1.Position.X = 600</div><div>Label1.Position.Y = 5</div><div>Label1.Caption = IntToStr(TimeLeft);</div><div>Label1.SetclProSettings(Label1.ClProSettings)</div><div><br></div><div><br></div><div>&nbsp; Form1.Run;</div><div>}&nbsp;</div><div><br></div><div>hata alıyorum</div><div><br></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, 05 May 2026 21:37:19 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1474&amp;PID=3361#3361</guid>
  </item> 
 </channel>
</rss>