<?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 : Resim Karıştırma</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Clomosy ile de&#287;i&#351;ken kullan&#305;m&#305; : Resim Karıştırma]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 15 Apr 2026 02:57:48 +0000</pubDate>
  <lastBuildDate>Tue, 23 Sep 2025 13:29:11 +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=1198</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[Resim Karıştırma : Merhaba G&#246;k&#231;e,Kodlarlar da yer...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1198&amp;PID=2557#2557</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> 1198<br /><strong>Gönderim Zamanı:</strong> 23&nbsp;Eylül&nbsp;2025 Saat 13:29<br /><br />Merhaba Gökçe,&nbsp;<br>Kodlarlar da yer alan hataları düzelttim&nbsp;<br>Bir tane süslü parantez hatası vardı döngü kullandığın yerde. Bir kapanış daha koymak gerekliydi.<br>Ayrıca farklı yerler de hizlama yapmak istiyorsan align özelliğini AlNone olarak ayarlaman gerekiyor.<br>Kodu aşağıya bırakıyorum inceleyebilirsin;<br><br><div>var</div><div>&nbsp; myform:TclForm;</div><div>&nbsp; Startbtn:TClProButton;</div><div>&nbsp; welcomelabel:TCLLabel;</div><div>&nbsp; PPanelMid, PPanel1Top, PPanel2Bottom:TclProPanel;</div><div>&nbsp; Image1, Image2, Image3,Image4, Image5,Image6,Image7,Image8 ,backImg:TCLImage;</div><div>&nbsp; Images: array&#091;0..7&#093; of TCLImage;</div><div>&nbsp; matched: array&#091;0..7&#093; of Boolean;</div><div>&nbsp; i, j, k: Integer;</div><div>&nbsp; posX: array&#091;0..7&#093; of Integer; // X pozisyonları</div><div>&nbsp; posY: array&#091;0..7&#093; of Integer; // Y pozisyonları</div><div><br></div><div>void StartGame&nbsp;</div><div>&nbsp; var&nbsp;</div><div>&nbsp; &nbsp; temp: String;</div><div>&nbsp; &nbsp; randomIndex: Integer;</div><div>&nbsp; &nbsp; tempImage: TCLImage;</div><div>&nbsp; &nbsp; tempX, tempY: Integer;</div><div>{</div><div>&nbsp; {</div><div>&nbsp; &nbsp; posX&#091;0&#093; = 150; posY&#091;0&#093; = 25;&nbsp;&nbsp;</div><div>&nbsp; &nbsp; posX&#091;1&#093; = 350; posY&#091;1&#093; = 25;&nbsp;&nbsp;</div><div>&nbsp; &nbsp; posX&#091;2&#093; = 550; posY&#091;2&#093; = 25;&nbsp;&nbsp;</div><div>&nbsp; &nbsp; posX&#091;3&#093; = 750; posY&#091;3&#093; = 25;&nbsp;&nbsp;</div><div>&nbsp; &nbsp; posX&#091;4&#093; = 150; posY&#091;4&#093; = 25;&nbsp;&nbsp;</div><div>&nbsp; &nbsp; posX&#091;5&#093; = 350; posY&#091;5&#093; = 25;&nbsp;</div><div>&nbsp; &nbsp; posX&#091;6&#093; = 550; posY&#091;6&#093; = 25;&nbsp;&nbsp;</div><div>&nbsp; &nbsp; posX&#091;7&#093; = 750; posY&#091;7&#093; = 25;&nbsp;&nbsp;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; // Resimleri karıştır</div><div>&nbsp; &nbsp; for i = 0 to 7 {</div><div>&nbsp; &nbsp; &nbsp; randomIndex = Random(8);</div><div>&nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; // Resimleri değiştir</div><div>&nbsp; &nbsp; &nbsp; tempImage = Images<em>;</div><div>&nbsp; &nbsp; &nbsp; Images<em> = Images&#091;randomIndex&#093;;</div><div>&nbsp; &nbsp; &nbsp; Images&#091;randomIndex&#093; = tempImage;</div><div>&nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; // Pozisyonları değiştir</div><div>&nbsp; &nbsp; &nbsp; tempX = posX<em>;</div><div>&nbsp; &nbsp; &nbsp; tempY = posY<em>;</div><div>&nbsp; &nbsp; &nbsp; posX<em> = posX&#091;randomIndex&#093;;</div><div>&nbsp; &nbsp; &nbsp; posY<em> = posY&#091;randomIndex&#093;;</div><div>&nbsp; &nbsp; &nbsp; posX&#091;randomIndex&#093; = tempX;</div><div>&nbsp; &nbsp; &nbsp; posY&#091;randomIndex&#093; = tempY;</div><div>&nbsp; &nbsp; }</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; for i = 0 to 7 {</div><div>&nbsp; &nbsp; &nbsp; Images<em>.Align = alNone;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; Images<em>.Position.X = posX<em>;</div><div>&nbsp; &nbsp; &nbsp; Images<em>.Position.Y = posY<em>;</div><div>&nbsp; &nbsp; }</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; ShowMessage('Resimler karıştırıldı!');</div><div>&nbsp; }</div><div>}</div><div><br></div><div>{</div><div>&nbsp; myform=TclForm.Create(Self);</div><div>&nbsp;&nbsp;</div><div>&nbsp; myform.SetFormColor('#085e26','#4dcc1e',clGHorizontal);</div><div>&nbsp; myform.clSetCaption('MyFirstGame');</div><div>&nbsp; myform.clSetWindowState(fwsMaximized);</div><div>&nbsp;&nbsp;</div><div>&nbsp; Startbtn=myform.AddNewProButton(myform, 'Startbtn', 'Başla');</div><div>&nbsp; Startbtn.Align=alMostBottom;</div><div>&nbsp; Startbtn.width=50;</div><div>&nbsp; Startbtn.height=100;</div><div>&nbsp; Startbtn.clProSettings.RoundHeight=2;</div><div>&nbsp; Startbtn.clProSettings.RoundWidth=2;</div><div>&nbsp; Startbtn.clProSettings.BorderColor = clAlphaColor.ClHexToColor('#604201');</div><div>&nbsp; Startbtn.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#e9e2e2');</div><div>&nbsp; Startbtn.SetClProSettings(Startbtn.clProSettings);</div><div>&nbsp;&nbsp;</div><div>&nbsp; welcomelabel = myform.AddNewLabel(myform,'welcomelabel','Resim eşleştirme Oyununa Hoşgeldiniz');</div><div>&nbsp; welcomelabel.Styledsettings=ssFamily;</div><div>&nbsp; welcomelabel.Textsettings.Font.Size=35;</div><div>&nbsp; welcomelabel.Textsettings.FontColor=clAlphaColor.clHexToColor('#ffffff');</div><div>&nbsp; welcomelabel.Align=alTop;</div><div>&nbsp; welcomelabel.Margins.Left=400;</div><div>&nbsp; welcomelabel.width=50;</div><div>&nbsp; welcomelabel.height=100;</div><div>&nbsp;&nbsp;</div><div>&nbsp; PPanelMid=myform.AddNewProPanel(myform,'PPanelMid');</div><div>&nbsp; PPanelMid.Align = alCenter;</div><div>&nbsp; PPanelMid.Width = 1200;</div><div>&nbsp; PPanelMid.Height = 400;</div><div>&nbsp; PPanelMid.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#d2c6c6');</div><div>&nbsp; PPanelMid.clProSettings.IsFill = True;&nbsp;</div><div>&nbsp; PPanelMid.clProSettings.IsRound = True;</div><div>&nbsp; PPanelMid.Margins.Top = -30;</div><div>&nbsp; PPanelMid.Margins.Bottom = 50;</div><div>&nbsp; PPanelMid.Margins.Left = -5;</div><div>&nbsp; PPanelMid.Margins.Right = -5;</div><div>&nbsp; PPanelMid.SetclProSettings(PPanelMid.clProSettings);</div><div>&nbsp;&nbsp;</div><div>&nbsp; PPanel1Top=myform.AddNewProPanel(PPanelMid,'PPanel1Top');</div><div>&nbsp; PPanel1Top.Align = alTop;</div><div>&nbsp; PPanel1Top.Width = 1200;</div><div>&nbsp; PPanel1Top.Height = 200;</div><div>&nbsp; PPanel1Top.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#d2c6c6');</div><div>&nbsp; PPanel1Top.clProSettings.BorderColor = clAlphaColor.clHexToColor('#000000');</div><div>&nbsp; PPanel1Top.clProSettings.BorderWidth = 2;</div><div>&nbsp; PPanel1Top.clProSettings.IsFill = True;&nbsp;</div><div>&nbsp; PPanel1Top.clProSettings.IsRound = True;</div><div>&nbsp; PPanel1Top.SetclProSettings(PPanel1Top.clProSettings);</div><div>&nbsp;&nbsp;</div><div>&nbsp; PPanel2Bottom=myform.AddNewProPanel(PPanelMid,'PPanel2Bottom');</div><div>&nbsp; PPanel2Bottom.Align = alBottom;</div><div>&nbsp; PPanel2Bottom.Width = 1200;</div><div>&nbsp; PPanel2Bottom.Height = 200;</div><div>&nbsp; PPanel2Bottom.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#d2c6c6');</div><div>&nbsp; PPanel2Bottom.clProSettings.BorderColor = clAlphaColor.clHexToColor('#849e00');</div><div>&nbsp; PPanel2Bottom.clProSettings.BorderWidth = 2;</div><div>&nbsp; PPanel2Bottom.clProSettings.IsFill = True;&nbsp;</div><div>&nbsp; PPanel2Bottom.clProSettings.IsRound = True;</div><div>&nbsp; PPanel2Bottom.SetclProSettings(PPanel2Bottom.clProSettings);</div><div><br></div><div>&nbsp; Image1 = myform.AddNewImage(PPanel1Top,'Image1');</div><div>&nbsp; Image1.Height = 150;</div><div>&nbsp; Image1.width=150;</div><div>&nbsp; myform.SetImage(Image1,'<a href="https://resmim.net/cdn/2025/09/17/jH0iCb.png" target="_blank" rel="nofollow">https://resmim.net/cdn/2025/09/17/jH0iCb.png</a>');</div><div>&nbsp; Image1.Align=alNone;</div><div>&nbsp; Image1.Position.X = 150;</div><div>&nbsp; Image1.Position.Y = 25;</div><div><br></div><div>&nbsp; Image2 = myform.AddNewImage(PPanel1Top,'Image2');</div><div>&nbsp; Image2.Height = 150;</div><div>&nbsp; Image2.width=150;</div><div>&nbsp; myform.SetImage(Image2,'<a href="https://resmim.net/cdn/2025/09/17/jH0iCb.png" target="_blank" rel="nofollow">https://resmim.net/cdn/2025/09/17/jH0iCb.png</a>');</div><div>&nbsp; Image2.Align=alNone;</div><div>&nbsp; Image2.Position.X = 350;</div><div>&nbsp; Image2.Position.Y = 25;</div><div><br></div><div>&nbsp; Image3 = myform.AddNewImage(PPanel1Top,'Image3');</div><div>&nbsp; Image3.Height = 150;</div><div>&nbsp; Image3.width=150;</div><div>&nbsp; myform.SetImage(Image3,'<a href="https://resmim.net/cdn/2025/09/17/jH0Ob2.png" target="_blank" rel="nofollow">https://resmim.net/cdn/2025/09/17/jH0Ob2.png</a>');</div><div>&nbsp; Image3.Align=alNone;</div><div>&nbsp; Image3.Position.X = 550;</div><div>&nbsp; Image3.Position.Y = 25;</div><div><br></div><div>&nbsp; Image4 = myform.AddNewImage(PPanel1Top,'Image4');</div><div>&nbsp; Image4.Height = 150;</div><div>&nbsp; Image4.width=150;</div><div>&nbsp; myform.SetImage(Image4,'<a href="https://resmim.net/cdn/2025/09/17/jH0Ob2.png" target="_blank" rel="nofollow">https://resmim.net/cdn/2025/09/17/jH0Ob2.png</a>');</div><div>&nbsp; Image4.Align=alNone;</div><div>&nbsp; Image4.Position.X = 750;</div><div>&nbsp; Image4.Position.Y = 25;</div><div><br></div><div>&nbsp; Image5 = myform.AddNewImage(PPanel2Bottom,'Image5');</div><div>&nbsp; Image5.Height = 150;</div><div>&nbsp; Image5.width=150;</div><div>&nbsp; myform.SetImage(Image5,'<a href="https://resmim.net/cdn/2025/09/17/jH0pMh.png" target="_blank" rel="nofollow">https://resmim.net/cdn/2025/09/17/jH0pMh.png</a>');</div><div>&nbsp; Image5.Align=alNone;</div><div>&nbsp; Image5.Position.X = 150;</div><div>&nbsp; Image5.Position.Y = 25;</div><div><br></div><div>&nbsp; Image6 = myform.AddNewImage(PPanel2Bottom,'Image6');</div><div>&nbsp; Image6.Height = 150;</div><div>&nbsp; Image6.width=150;</div><div>&nbsp; myform.SetImage(Image6,'<a href="https://resmim.net/cdn/2025/09/17/jH0pMh.png" target="_blank" rel="nofollow">https://resmim.net/cdn/2025/09/17/jH0pMh.png</a>');</div><div>&nbsp; Image6.Align=alNone;</div><div>&nbsp; Image6.Position.X = 350;</div><div>&nbsp; Image6.Position.Y = 25;</div><div><br></div><div>&nbsp; Image7 = myform.AddNewImage(PPanel2Bottom,'Image7');</div><div>&nbsp; Image7.Height = 150;</div><div>&nbsp; Image7.width=150;</div><div>&nbsp; myform.SetImage(Image7,'<a href="https://resmim.net/cdn/2025/09/17/jH0FgK.png" target="_blank" rel="nofollow">https://resmim.net/cdn/2025/09/17/jH0FgK.png</a>');</div><div>&nbsp; Image7.Align=alNone;</div><div>&nbsp; Image7.Position.X = 550;</div><div>&nbsp; Image7.Position.Y = 25;</div><div><br></div><div>&nbsp; Image8 = myform.AddNewImage(PPanel2Bottom,'Image8');</div><div>&nbsp; Image8.Height = 150;</div><div>&nbsp; Image8.width=150;</div><div>&nbsp; myform.SetImage(Image8,'<a href="https://resmim.net/cdn/2025/09/17/jH0FgK.png" target="_blank" rel="nofollow">https://resmim.net/cdn/2025/09/17/jH0FgK.png</a>');</div><div>&nbsp; Image8.Align=alNone;</div><div>&nbsp; Image8.Position.X = 750;</div><div>&nbsp; Image8.Position.Y = 25;</div><div><br></div><div>&nbsp; Images&#091;0&#093; = Image1;</div><div>&nbsp; Images&#091;1&#093; = Image2;</div><div>&nbsp; Images&#091;2&#093; = Image3;</div><div>&nbsp; Images&#091;3&#093; = Image4;</div><div>&nbsp; Images&#091;4&#093; = Image5;</div><div>&nbsp; Images&#091;5&#093; = Image6;</div><div>&nbsp; Images&#091;6&#093; = Image7;</div><div>&nbsp; Images&#091;7&#093; = Image8;</div><div>&nbsp;&nbsp;</div><div>&nbsp; myform.AddNewEvent(Startbtn,tbeOnClick,'StartGame');</div><div><br></div><div>&nbsp; myform.Run;</div><div>}</div>]]>
   </description>
   <pubDate>Tue, 23 Sep 2025 13:29:11 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1198&amp;PID=2557#2557</guid>
  </item> 
  <item>
   <title><![CDATA[Resim Karıştırma : Resimleri dize &#252;zerine al&#305;p oradan...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1198&amp;PID=2555#2555</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=346">Gökçe ulusoy</a><br /><strong>Konu:</strong> 1198<br /><strong>Gönderim Zamanı:</strong> 22&nbsp;Eylül&nbsp;2025 Saat 11:09<br /><br />Resimleri dize üzerine alıp oradan indexlerine göre karıştırmak istemistim fakat resimlerin konumları değişmedi ve sadece index değerleri değişti. Bu Durumda resimleri karıştırmak ve konumlarını rastgele ayarlamak istediğimde nasıl bir yol izlemeliyim.&nbsp;<div><div>var</div><div>&nbsp; myform:TclForm;</div><div>&nbsp; Startbtn:TClProButton;</div><div>&nbsp; welcomelabel:TCLLabel;</div><div>&nbsp; PPanelMid, PPanel1Top, PPanel2Bottom:TclProPanel;</div><div>&nbsp; Image1, Image2, Image3,Image4, Image5,Image6,Image7,Image8 ,backImg:TCLImage;</div><div>&nbsp; Images: array&#091;0..7&#093; of TCLImage;</div><div>&nbsp; //switch1:TCLSwitch;</div><div>&nbsp; matched: array&#091;0..7&#093; of Boolean;</div><div>&nbsp; i, j, k: Integer;</div><div><br></div><div>void StartGame;</div><div>&nbsp; var&nbsp;</div><div>&nbsp; &nbsp; temp:String;</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; for (i=0 to 7)</div><div>&nbsp; &nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; myform.SetImage(Images<em>, '<a href="https://resmim.net/cdn/2025/09/18/jdNWJc.png" target="_blank" rel="nofollow">https://resmim.net/cdn/2025/09/18/jdNWJc.png</a>')</div><div>&nbsp; &nbsp; }</div><div><br></div><div>&nbsp; {</div><div>&nbsp;&nbsp;</div><div>&nbsp; &nbsp; myform=TclForm.Create(Self);</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; myform.SetFormColor('#085e26','#4dcc1e',clGHorizontal);</div><div>&nbsp; &nbsp; myform.clSetCaption('MyFirstGame')</div><div>&nbsp; &nbsp; myform.clSetWindowState(fwsMaximized)</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; Startbtn=myform.AddNewProButton(myform, 'Startbtn', 'Başla');</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; Startbtn.Align=alMostBottom;</div><div>&nbsp; &nbsp; Startbtn.width=50;</div><div>&nbsp; &nbsp; Startbtn.height=100;</div><div>&nbsp; &nbsp; Startbtn.clProSettings.RoundHeight=2;</div><div>&nbsp; &nbsp; Startbtn.clProSettings.RoundWidth=2;</div><div>&nbsp; &nbsp; Startbtn.clProSettings.BorderColor = clAlphaColor.ClHexToColor ('#604201')</div><div>&nbsp; &nbsp; Startbtn.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#e9e2e2');</div><div>&nbsp; &nbsp; Startbtn.SetClProSettings(Startbtn.clProSettings)&nbsp;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; welcomelabel = myform.AddNewLabel(myform,'welcomelabel','Resim eşleştirme Oyununa Hoşgeldiniz');</div><div>&nbsp; &nbsp; welcomelabel.Styledsettings=ssFamily;</div><div>&nbsp; &nbsp; welcomelabel.Textsettings.Font.Size=35;</div><div>&nbsp; &nbsp; welcomelabel.Textsettings.FontColor=clAlphaColor.clHexToColor('#ffffff');</div><div>&nbsp; &nbsp; welcomelabel.Align=alTop;</div><div>&nbsp; &nbsp; welcomelabel.Margins.Left=400;</div><div>&nbsp; &nbsp; welcomelabel.width=50;</div><div>&nbsp; &nbsp; welcomelabel.height=100;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; PPanelMid=myform.AddNewProPanel(myform,'PPanelMid');</div><div>&nbsp; &nbsp; PPanelMid.Align = alCenter;</div><div>&nbsp; &nbsp; PPanelMid.Width = 1200;</div><div>&nbsp; &nbsp; PPanelMid.Height = 400;</div><div>&nbsp; &nbsp; PPanelMid.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#d2c6c6');</div><div>&nbsp; &nbsp; PPanelMid.clProSettings.IsFill = True;&nbsp;</div><div>&nbsp; &nbsp; PPanelMid.clProSettings.IsRound = True;</div><div>&nbsp; &nbsp; PPanelMid.Margins.Top = -30;</div><div>&nbsp; &nbsp; PPanelMid.Margins.Bottom = 50;</div><div>&nbsp; &nbsp; PPanelMid.Margins.Left = -5;</div><div>&nbsp; &nbsp; PPanelMid.Margins.Right = -5;</div><div>&nbsp; &nbsp; PPanelMid.SetclProSettings(PPanelMid.clProSettings);</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; PPanel1Top=myform.AddNewProPanel(PPanelMid,'PPanel1Top');</div><div>&nbsp; &nbsp; PPanel1Top.Align = alTop;</div><div>&nbsp; &nbsp; PPanel1Top.Width = 1200;</div><div>&nbsp; &nbsp; PPanel1Top.Height = 200;</div><div>&nbsp; &nbsp; PPanel1Top.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#d2c6c6');</div><div>&nbsp; &nbsp; PPanel1Top.clProSettings.BorderColor = clAlphaColor.clHexToColor('#000000');</div><div>&nbsp; &nbsp; PPanel1Top.clProSettings.BorderWidth = 2;</div><div>&nbsp; &nbsp; PPanel1Top.clProSettings.IsFill = True;&nbsp;</div><div>&nbsp; &nbsp; PPanel1Top.clProSettings.IsRound = True;</div><div>&nbsp; &nbsp; PPanel1Top.SetclProSettings(PPanel1Top.clProSettings);</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; PPanel2Bottom=myform.AddNewProPanel(PPanelMid,'PPanel2Bottom');</div><div>&nbsp; &nbsp; PPanel2Bottom.Align = alBottom;</div><div>&nbsp; &nbsp; PPanel2Bottom.Width = 1200;</div><div>&nbsp; &nbsp; PPanel2Bottom.Height = 200;</div><div>&nbsp; &nbsp; PPanel2Bottom.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#d2c6c6');</div><div>&nbsp; &nbsp; PPanel2Bottom.clProSettings.BorderColor = clAlphaColor.clHexToColor('#849e00');</div><div>&nbsp; &nbsp; PPanel2Bottom.clProSettings.BorderWidth = 2;</div><div>&nbsp; &nbsp; PPanel2Bottom.clProSettings.IsFill = True;&nbsp;</div><div>&nbsp; &nbsp; PPanel2Bottom.clProSettings.IsRound = True;</div><div>&nbsp; &nbsp; PPanel2Bottom.SetclProSettings(PPanel2Bottom.clProSettings);</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp; Image1 = myform.AddNewImage(PPanel1Top,'Image1');</div><div>&nbsp; &nbsp; Image1.Height = 150;</div><div>&nbsp; &nbsp; Image1.width=150;</div><div>&nbsp; &nbsp; myform.SetImage(Image1,'<a href="https://resmim.net/cdn/2025/09/17/jH0iCb.png" target="_blank" rel="nofollow">https://resmim.net/cdn/2025/09/17/jH0iCb.png</a>');</div><div>&nbsp; &nbsp; Image1.Align=alLeft;</div><div>&nbsp; &nbsp; Image1.Margins.Left = 150;&nbsp;</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; Image2 = myform.AddNewImage(PPanel1Top,'Image2');</div><div>&nbsp; &nbsp; Image2.Height = 150;</div><div>&nbsp; &nbsp; Image2.width=150;</div><div>&nbsp; &nbsp; myform.SetImage(Image2,'<a href="https://resmim.net/cdn/2025/09/17/jH0iCb.png" target="_blank" rel="nofollow">https://resmim.net/cdn/2025/09/17/jH0iCb.png</a>');</div><div>&nbsp; &nbsp; Image2.Align=alLeft;</div><div>&nbsp; &nbsp; Image2.Margins.Left = 100;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; Image3 = myform.AddNewImage(PPanel1Top,'Image3');</div><div>&nbsp; &nbsp; Image3.Height = 150;</div><div>&nbsp; &nbsp; Image3.width=150;</div><div>&nbsp; &nbsp; myform.SetImage(Image3,'<a href="https://resmim.net/cdn/2025/09/17/jH0Ob2.png" target="_blank" rel="nofollow">https://resmim.net/cdn/2025/09/17/jH0Ob2.png</a>');</div><div>&nbsp; &nbsp; Image3.Align=alLeft;</div><div>&nbsp; &nbsp; Image3.Margins.Left = 100;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; &nbsp; Image4 = myform.AddNewImage(PPanel1Top,'Image4');</div><div>&nbsp; &nbsp; Image4.Height = 150;</div><div>&nbsp; &nbsp; Image4.width=150;</div><div>&nbsp; &nbsp; myform.SetImage(Image4,'<a href="https://resmim.net/cdn/2025/09/17/jH0Ob2.png" target="_blank" rel="nofollow">https://resmim.net/cdn/2025/09/17/jH0Ob2.png</a>');</div><div>&nbsp; &nbsp; Image4.Align=alLeft;</div><div>&nbsp; &nbsp; Image4.Margins.Left = 100;</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div><br></div><div>&nbsp; &nbsp; Image5 = myform.AddNewImage(PPanel2Bottom,'Image5');</div><div>&nbsp; &nbsp; Image5.Height = 150;</div><div>&nbsp; &nbsp; Image5.width=150;</div><div>&nbsp; &nbsp; myform.SetImage(Image5,'<a href="https://resmim.net/cdn/2025/09/17/jH0pMh.png" target="_blank" rel="nofollow">https://resmim.net/cdn/2025/09/17/jH0pMh.png</a>');</div><div>&nbsp; &nbsp; Image5.Align=alLeft;</div><div>&nbsp; &nbsp; Image5.Margins.Left = 150;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; Image6 = myform.AddNewImage(PPanel2Bottom,'Image6');</div><div>&nbsp; &nbsp; Image6.Height = 150;</div><div>&nbsp; &nbsp; Image6.width=150;</div><div>&nbsp; &nbsp; myform.SetImage(Image6,'<a href="https://resmim.net/cdn/2025/09/17/jH0pMh.png" target="_blank" rel="nofollow">https://resmim.net/cdn/2025/09/17/jH0pMh.png</a>');</div><div>&nbsp; &nbsp; Image6.Align=alLeft;</div><div>&nbsp; &nbsp; Image6.Margins.Left = 100;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; Image7 = myform.AddNewImage(PPanel2Bottom,'Image7');</div><div>&nbsp; &nbsp; Image7.Height = 150;</div><div>&nbsp; &nbsp; Image7.width=150;</div><div>&nbsp; &nbsp; myform.SetImage(Image7,'<a href="https://resmim.net/cdn/2025/09/17/jH0FgK.png" target="_blank" rel="nofollow">https://resmim.net/cdn/2025/09/17/jH0FgK.png</a>');</div><div>&nbsp; &nbsp; Image7.Align=alLeft;</div><div>&nbsp; &nbsp; Image7.Margins.Left = 100;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; Image8 = myform.AddNewImage(PPanel2Bottom,'Image8');</div><div>&nbsp; &nbsp; Image8.Height = 150;</div><div>&nbsp; &nbsp; Image8.width=150;</div><div>&nbsp; &nbsp; myform.SetImage(Image8,'<a href="https://resmim.net/cdn/2025/09/17/jH0FgK.png" target="_blank" rel="nofollow">https://resmim.net/cdn/2025/09/17/jH0FgK.png</a>');</div><div>&nbsp; &nbsp; Image8.Align=alLeft;</div><div>&nbsp; &nbsp; Image8.Margins.Left = 100;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; Images&#091;0&#093; = Image1;</div><div>&nbsp; &nbsp; Images&#091;1&#093; = Image2;</div><div>&nbsp; &nbsp; Images&#091;2&#093; = Image3;</div><div>&nbsp; &nbsp; Images&#091;3&#093; = Image4;</div><div>&nbsp; &nbsp; Images&#091;4&#093; = Image5;</div><div>&nbsp; &nbsp; Images&#091;5&#093; = Image6;</div><div>&nbsp; &nbsp; Images&#091;6&#093; = Image7;</div><div>&nbsp; &nbsp; Images&#091;7&#093; = Image8;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; myform.AddNewEvent(Startbtn,tbeOnClick,'StartGame');</div><div>&nbsp;</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp; myform.Run;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; }</div><div>&nbsp;</div></div>]]>
   </description>
   <pubDate>Mon, 22 Sep 2025 11:09:26 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1198&amp;PID=2555#2555</guid>
  </item> 
 </channel>
</rss>