<?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 : ödev kodlarda hata</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; : ödev kodlarda hata]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 11 May 2026 21:50:03 +0000</pubDate>
  <lastBuildDate>Mon, 11 May 2026 20:53:40 +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=1517</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[ödev kodlarda hata : Merhabalar&#214;ncelikle kodunu yazarken...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1517&amp;PID=3491#3491</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> 1517<br /><strong>Gönderim Zamanı:</strong> 11&nbsp;Mayıs&nbsp;2026 Saat 20:53<br /><br />Merhabalar&nbsp;<br><br>Öncelikle kodunu yazarken setupcomponent ile yazmamanı istiyorum clProsettings ile yazmanı istiyorum.<br><br>kodlama da kullandığında tag yalnız doğrusu clTagStr olması gerekli&nbsp;<br><br><br><br><div>var</div><div>&nbsp; MyForm: TclForm;</div><div>&nbsp; TitleLabel, InfoLabel: TclProLabel;</div><div>&nbsp; CylinderPanel: TclProPanel;</div><div>&nbsp; Liquid1, Liquid2, Liquid3, Liquid4, Liquid5: TclProPanel;</div><div>&nbsp; BtnBal, BtnSabun, BtnSu, BtnYag, BtnAlkol: TclProButton;</div><div>&nbsp; MainVertBox, BtnFlowBox: TclLayout;</div><div>&nbsp; CurrentStep: Integer;</div><div>&nbsp; LabImage: TclImage;</div><div><br></div><div>void SetupLiquids;</div><div>{</div><div>&nbsp; Liquid1.Visible = False;</div><div>&nbsp; Liquid2.Visible = False;</div><div>&nbsp; Liquid3.Visible = False;</div><div>&nbsp; Liquid4.Visible = False;</div><div>&nbsp; Liquid5.Visible = False;</div><div>&nbsp; CurrentStep = 1;</div><div>}</div><div><br></div><div>void CheckDensity;</div><div>var</div><div>&nbsp; ClickedTag: Integer;</div><div>&nbsp; SenderBtn: TclProButton;</div><div>{</div><div>&nbsp; SenderBtn = TclProButton(MyForm.clSender);</div><div>&nbsp; ClickedTag = SenderBtn.clTagInt;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; if (ClickedTag == CurrentStep)</div><div>&nbsp; {</div><div>&nbsp; &nbsp; if (CurrentStep == 1)&nbsp;</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; Liquid1.Visible = True;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; ShowMessage('Bal (d=1.42) en yoğun olduğu için en alta yerleşti!');</div><div>&nbsp; &nbsp; }</div><div>&nbsp; &nbsp; else if (CurrentStep == 2)&nbsp;</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; Liquid2.Visible = True;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; ShowMessage('Bulaşık Sabunu (d=1.06) Balın üzerine çıktı.');</div><div>&nbsp; &nbsp; }</div><div>&nbsp; &nbsp; else if (CurrentStep == 3)&nbsp;</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; Liquid3.Visible = True;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; ShowMessage('Su (d=1.00) Sabunun üzerinde duruyor.');</div><div>&nbsp; &nbsp; }</div><div>&nbsp; &nbsp; else if (CurrentStep == 4)&nbsp;</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; Liquid4.Visible = True;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; ShowMessage('Zeytinyağı (d=0.92) Suyun üstünde yüzüyor!');</div><div>&nbsp; &nbsp; }</div><div>&nbsp; &nbsp; else if (CurrentStep == 5)&nbsp;</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; Liquid5.Visible = True;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; ShowMessage('Tebrikler! Alkol (d=0.80) en üstte. Yoğunluk Kulesi Tamamlandı!');</div><div>&nbsp; &nbsp; }</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; CurrentStep = CurrentStep + 1;</div><div>&nbsp; }</div><div>&nbsp; else</div><div>&nbsp; {</div><div>&nbsp; &nbsp; ShowMessage('Hatalı Sıralama! Yoğunluğu daha fazla olan bir madde seçmelisin.');</div><div>&nbsp; }</div><div>}</div><div><br></div><div>{</div><div>&nbsp; MyForm = TclForm.Create(Self);</div><div>&nbsp;&nbsp;</div><div>&nbsp; LabImage = MyForm.AddNewImage(MyForm, 'LabImage');</div><div>&nbsp; LabImage.Align = alContents;</div><div>&nbsp; MyForm.SetImage(LabImage, '<a href="https://img.freepik.com/free-vector/empty-science-laboratory-scene_1308-59178.jpg" target="_blank" rel="nofollow">https://img.freepik.com/free-vector/empty-science-laboratory-scene_1308-59178.jpg</a>');</div><div><br></div><div>&nbsp; MainVertBox = MyForm.AddNewLayout(MyForm, 'MainVertBox');</div><div>&nbsp; MainVertBox.Align = alContents;</div><div><br></div><div>&nbsp; TitleLabel = MyForm.AddNewProLabel(MainVertBox, 'TitleLabel', 'FEN BİLGİSİ: YOĞUNLUK KULESİ');</div><div>&nbsp; TitleLabel.Align = alTop;</div><div>&nbsp; TitleLabel.Height = 40;</div><div>&nbsp; TitleLabel.Margins.Top = 20;</div><div>&nbsp; TitleLabel.clProSettings.FontSize = 22;</div><div>&nbsp; TitleLabel.clProSettings.FontColor = clAlphaColor.clWhite;</div><div>&nbsp; TitleLabel.clProSettings.FontHorzAlign = palCenter;</div><div>&nbsp; TitleLabel.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; TitleLabel.SetclProSettings(TitleLabel.clProSettings);</div><div><br></div><div>&nbsp; InfoLabel = MyForm.AddNewProLabel(MainVertBox, 'InfoLabel', 'Sıvıları en yoğundan en az yoğuna doğru mezüre ekle!');</div><div>&nbsp; InfoLabel.Align = alTop;</div><div>&nbsp; InfoLabel.Height = 30;</div><div>&nbsp; InfoLabel.clProSettings.FontSize = 14;</div><div>&nbsp; InfoLabel.clProSettings.FontColor = clAlphaColor.clHexToColor('#E1E1E1');</div><div>&nbsp; InfoLabel.clProSettings.FontHorzAlign = palCenter;</div><div>&nbsp; InfoLabel.SetclProSettings(InfoLabel.clProSettings);</div><div><br></div><div>&nbsp; CylinderPanel = MyForm.AddNewProPanel(MainVertBox, 'CylinderPanel');</div><div>&nbsp; CylinderPanel.Align = alCenter;</div><div>&nbsp; CylinderPanel.Width = 150;</div><div>&nbsp; CylinderPanel.Height = 350;</div><div>&nbsp; CylinderPanel.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#50FFFFFF');</div><div>&nbsp; CylinderPanel.clProSettings.BorderColor = clAlphaColor.clWhite;</div><div>&nbsp; CylinderPanel.clProSettings.BorderWidth = 2;</div><div>&nbsp; CylinderPanel.clProSettings.RoundWidth = 20;</div><div>&nbsp; CylinderPanel.clProSettings.RoundHeight = 20;</div><div>&nbsp; CylinderPanel.SetclProSettings(CylinderPanel.clProSettings);</div><div><br></div><div>&nbsp; Liquid1 = MyForm.AddNewProPanel(CylinderPanel, 'Liquid1');</div><div>&nbsp; Liquid1.Align = alBottom;</div><div>&nbsp; Liquid1.Height = 60;</div><div>&nbsp; Liquid1.Margins.Left = 5; Liquid1.Margins.Right = 5; Liquid1.Margins.Bottom = 5;</div><div>&nbsp; Liquid1.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#8B4513');</div><div>&nbsp; Liquid1.clProSettings.RoundWidth = 10; Liquid1.clProSettings.RoundHeight = 10;</div><div>&nbsp; Liquid1.SetclProSettings(Liquid1.clProSettings);</div><div><br></div><div>&nbsp; Liquid2 = MyForm.AddNewProPanel(CylinderPanel, 'Liquid2');</div><div>&nbsp; Liquid2.Align = alBottom;</div><div>&nbsp; Liquid2.Height = 60;</div><div>&nbsp; Liquid2.Margins.Left = 5; Liquid2.Margins.Right = 5;</div><div>&nbsp; Liquid2.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#228B22');</div><div>&nbsp; Liquid2.SetclProSettings(Liquid2.clProSettings);</div><div><br></div><div>&nbsp; Liquid3 = MyForm.AddNewProPanel(CylinderPanel, 'Liquid3');</div><div>&nbsp; Liquid3.Align = alBottom;</div><div>&nbsp; Liquid3.Height = 60;</div><div>&nbsp; Liquid3.Margins.Left = 5; Liquid3.Margins.Right = 5;</div><div>&nbsp; Liquid3.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#00BFFF');</div><div>&nbsp; Liquid3.SetclProSettings(Liquid3.clProSettings);</div><div><br></div><div>&nbsp; Liquid4 = MyForm.AddNewProPanel(CylinderPanel, 'Liquid4');</div><div>&nbsp; Liquid4.Align = alBottom;</div><div>&nbsp; Liquid4.Height = 60;</div><div>&nbsp; Liquid4.Margins.Left = 5; Liquid4.Margins.Right = 5;</div><div>&nbsp; Liquid4.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#FFD700');</div><div>&nbsp; Liquid4.SetclProSettings(Liquid4.clProSettings);</div><div><br></div><div>&nbsp; Liquid5 = MyForm.AddNewProPanel(CylinderPanel, 'Liquid5');</div><div>&nbsp; Liquid5.Align = alBottom;</div><div>&nbsp; Liquid5.Height = 60;</div><div>&nbsp; Liquid5.Margins.Left = 5; Liquid5.Margins.Right = 5;</div><div>&nbsp; Liquid5.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#FF4500');</div><div>&nbsp; Liquid5.SetclProSettings(Liquid5.clProSettings);</div><div><br></div><div>&nbsp; BtnFlowBox = MyForm.AddNewLayout(MainVertBox, 'BtnFlowBox');</div><div>&nbsp; BtnFlowBox.Align = alBottom;</div><div>&nbsp; BtnFlowBox.Height = 180;</div><div><br></div><div>&nbsp; BtnBal = MyForm.AddNewProButton(BtnFlowBox, 'BtnBal', 'BAL (1.42)');</div><div>&nbsp; BtnBal.Align = alTop;</div><div>&nbsp; BtnBal.Height = 30;</div><div>&nbsp; BtnBal.Margins.Left = 50; BtnBal.Margins.Right = 50; BtnBal.Margins.Top = 5;</div><div>&nbsp; BtnBal.clTagInt = 1; // Tag ataması</div><div>&nbsp; BtnBal.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#8B4513');</div><div>&nbsp; BtnBal.clProSettings.FontColor = clAlphaColor.clWhite;</div><div>&nbsp; BtnBal.clProSettings.RoundWidth = 10; BtnBal.clProSettings.RoundHeight = 10;</div><div>&nbsp; BtnBal.SetclProSettings(BtnBal.clProSettings);</div><div>&nbsp; MyForm.AddNewEvent(BtnBal, tbeonclick, 'CheckDensity');</div><div><br></div><div>&nbsp; BtnSabun = MyForm.AddNewProButton(BtnFlowBox, 'BtnSabun', 'SABUN (1.06)');</div><div>&nbsp; BtnSabun.Align = alTop;</div><div>&nbsp; BtnSabun.Height = 30;</div><div>&nbsp; BtnSabun.Margins.Left = 50; BtnSabun.Margins.Right = 50; BtnSabun.Margins.Top = 5;</div><div>&nbsp; BtnSabun.clTagInt = 2;</div><div>&nbsp; BtnSabun.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#228B22');</div><div>&nbsp; BtnSabun.clProSettings.FontColor = clAlphaColor.clWhite;</div><div>&nbsp; BtnSabun.clProSettings.RoundWidth = 10; BtnSabun.clProSettings.RoundHeight = 10;</div><div>&nbsp; BtnSabun.SetclProSettings(BtnSabun.clProSettings);</div><div>&nbsp; MyForm.AddNewEvent(BtnSabun, tbeonclick, 'CheckDensity');</div><div><br></div><div>&nbsp; BtnSu = MyForm.AddNewProButton(BtnFlowBox, 'BtnSu', 'SU (1.00)');</div><div>&nbsp; BtnSu.Align = alTop;</div><div>&nbsp; BtnSu.Height = 30;</div><div>&nbsp; BtnSu.Margins.Left = 50; BtnSu.Margins.Right = 50; BtnSu.Margins.Top = 5;</div><div>&nbsp; BtnSu.clTagInt = 3;</div><div>&nbsp; BtnSu.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#00BFFF');</div><div>&nbsp; BtnSu.clProSettings.FontColor = clAlphaColor.clWhite;</div><div>&nbsp; BtnSu.clProSettings.RoundWidth = 10; BtnSu.clProSettings.RoundHeight = 10;</div><div>&nbsp; BtnSu.SetclProSettings(BtnSu.clProSettings);</div><div>&nbsp; MyForm.AddNewEvent(BtnSu, tbeonclick, 'CheckDensity');</div><div><br></div><div>&nbsp; BtnYag = MyForm.AddNewProButton(BtnFlowBox, 'BtnYag', 'YAĞ (0.92)');</div><div>&nbsp; BtnYag.Align = alTop;</div><div>&nbsp; BtnYag.Height = 30;</div><div>&nbsp; BtnYag.Margins.Left = 50; BtnYag.Margins.Right = 50; BtnYag.Margins.Top = 5;</div><div>&nbsp; BtnYag.clTagInt = 4;</div><div>&nbsp; BtnYag.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#FFD700');</div><div>&nbsp; BtnYag.clProSettings.FontColor = clAlphaColor.clBlack;</div><div>&nbsp; BtnYag.clProSettings.RoundWidth = 10; BtnYag.clProSettings.RoundHeight = 10;</div><div>&nbsp; BtnYag.SetclProSettings(BtnYag.clProSettings);</div><div>&nbsp; MyForm.AddNewEvent(BtnYag, tbeonclick, 'CheckDensity');</div><div><br></div><div>&nbsp; BtnAlkol = MyForm.AddNewProButton(BtnFlowBox, 'BtnAlkol', 'ALKOL (0.80)');</div><div>&nbsp; BtnAlkol.Align = alTop;</div><div>&nbsp; BtnAlkol.Height = 30;</div><div>&nbsp; BtnAlkol.Margins.Left = 50; BtnAlkol.Margins.Right = 50; BtnAlkol.Margins.Top = 5;</div><div>&nbsp; BtnAlkol.clTagInt = 5;</div><div>&nbsp; BtnAlkol.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#FF4500');</div><div>&nbsp; BtnAlkol.clProSettings.FontColor = clAlphaColor.clWhite;</div><div>&nbsp; BtnAlkol.clProSettings.RoundWidth = 10; BtnAlkol.clProSettings.RoundHeight = 10;</div><div>&nbsp; BtnAlkol.SetclProSettings(BtnAlkol.clProSettings);</div><div>&nbsp; MyForm.AddNewEvent(BtnAlkol, tbeonclick, 'CheckDensity');</div><div><br></div><div>&nbsp; SetupLiquids;</div><div>&nbsp; MyForm.Run;</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>Mon, 11 May 2026 20:53:40 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1517&amp;PID=3491#3491</guid>
  </item> 
  <item>
   <title><![CDATA[ödev kodlarda hata : var MyForm: TclForm; TitleLabel,...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1517&amp;PID=3489#3489</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=454">erenertankef</a><br /><strong>Konu:</strong> 1517<br /><strong>Gönderim Zamanı:</strong> 11&nbsp;Mayıs&nbsp;2026 Saat 19:05<br /><br /><div>var</div><div>&nbsp; MyForm: TclForm;</div><div>&nbsp; TitleLabel, InfoLabel: TclProLabel;</div><div>&nbsp; CylinderPanel: TclProPanel;</div><div>&nbsp; Liquid1, Liquid2, Liquid3, Liquid4, Liquid5: TclProPanel;</div><div>&nbsp; BtnBal, BtnSabun, BtnSu, BtnYag, BtnAlkol: TclProButton;</div><div>&nbsp; MainVertBox, BtnFlowBox: TclLayout;</div><div>&nbsp; CurrentStep: Integer;</div><div>&nbsp; LabImage: TclImage;</div><div><br></div><div>void SetupLiquids;</div><div>{</div><div>&nbsp; Liquid1.Visible = False;</div><div>&nbsp; Liquid2.Visible = False;</div><div>&nbsp; Liquid3.Visible = False;</div><div>&nbsp; Liquid4.Visible = False;</div><div>&nbsp; Liquid5.Visible = False;</div><div>&nbsp; CurrentStep = 1;</div><div>}</div><div><br></div><div>void CheckDensity;</div><div>var</div><div>&nbsp; ClickedTag: Integer;</div><div>{</div><div>&nbsp; ClickedTag = TclProButton(MyForm.LastEventSender).Tag;</div><div>&nbsp;&nbsp;</div><div>&nbsp; if (ClickedTag == CurrentStep)</div><div>&nbsp; {</div><div>&nbsp; &nbsp; if (CurrentStep == 1) {Liquid1.Visible = True; ShowMessage('Bal (d=1.42) en yoğun olduğu için en alta yerleşti!');}</div><div>&nbsp; &nbsp; if (CurrentStep == 2) {Liquid2.Visible = True; ShowMessage('Bulaşık Sabunu (d=1.06) Balın üzerine çıktı.');}</div><div>&nbsp; &nbsp; if (CurrentStep == 3) {Liquid3.Visible = True; ShowMessage('Su (d=1.00) Sabunun üzerinde duruyor.');}</div><div>&nbsp; &nbsp; if (CurrentStep == 4) {Liquid4.Visible = True; ShowMessage('Zeytinyağı (d=0.92) Suyun üstünde yüzüyor!');}</div><div>&nbsp; &nbsp; if (CurrentStep == 5) {Liquid5.Visible = True; ShowMessage('Tebrikler! Alkol (d=0.80) en üstte. Yoğunluk Kulesi Tamamlandı!');}</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; CurrentStep = CurrentStep + 1;</div><div>&nbsp; }</div><div>&nbsp; else</div><div>&nbsp; {</div><div>&nbsp; &nbsp; ShowMessage('Hatalı Sıralama! Yoğunluğu daha fazla olan bir madde seçmelisin.');</div><div>&nbsp; }</div><div>}</div><div><br></div><div>{</div><div>&nbsp; MyForm = TclForm.Create(Self);</div><div>&nbsp;&nbsp;</div><div>&nbsp; // Arka Plan Görseli</div><div>&nbsp; LabImage = MyForm.AddNewImage(MyForm, 'LabImage');</div><div>&nbsp; LabImage.Align = alContents;</div><div>&nbsp; MyForm.SetImage(LabImage, '<a href="https://img.freepik.com/free-vector/empty-science-laboratory-scene_1308-59178.jpg" target="_blank" rel="nofollow">https://img.freepik.com/free-vector/empty-science-laboratory-scene_1308-59178.jpg</a>');</div><div><br></div><div>&nbsp; MainVertBox = MyForm.AddNewLayout(MyForm, 'MainVertBox');</div><div>&nbsp; MainVertBox.Align = alContents;</div><div><br></div><div>&nbsp; TitleLabel = MyForm.AddNewProLabel(MainVertBox, 'TitleLabel', 'FEN BİLGİSİ: YOĞUNLUK KULESİ');</div><div>&nbsp; clComponent.SetupComponent(TitleLabel, '{"Align":"Top","MarginTop":20,"MarginBottom":10,"Height":40,"TextHorizontalAlign":"Center","TextBold":"yes","FontSize":22,"FontColor":"#FFFFFF"}');</div><div><br></div><div>&nbsp; InfoLabel = MyForm.AddNewProLabel(MainVertBox, 'InfoLabel', 'Sıvıları en yoğundan en az yoğuna doğru mezüre ekle!');</div><div>&nbsp; clComponent.SetupComponent(InfoLabel, '{"Align":"Top","Height":30,"TextHorizontalAlign":"Center","FontSize":14,"FontColor":"#E1E1E1"}');</div><div><br></div><div>&nbsp; // Mezür Tasarımı (Cylinder)</div><div>&nbsp; CylinderPanel = MyForm.AddNewProPanel(MainVertBox, 'CylinderPanel');</div><div>&nbsp; clComponent.SetupComponent(CylinderPanel, '{"Align":"Center","Width":150,"Height":350,"BackgroundColor":"#50FFFFFF","RoundHeight":20,"RoundWidth":20,"BorderColor":"#FFFFFF","BorderWidth":2}');</div><div><br></div><div>&nbsp; // Sıvı Katmanları (Aşağıdan yukarıya 1-5)</div><div>&nbsp; Liquid1 = MyForm.AddNewProPanel(CylinderPanel, 'Liquid1'); // Bal</div><div>&nbsp; clComponent.SetupComponent(Liquid1, '{"Align":"Bottom","Height":60,"BackgroundColor":"#8B4513","MarginLeft":5,"MarginRight":5,"MarginBottom":5,"RoundHeight":10,"RoundWidth":10}');</div><div>&nbsp;&nbsp;</div><div>&nbsp; Liquid2 = MyForm.AddNewProPanel(CylinderPanel, 'Liquid2'); // Sabun</div><div>&nbsp; clComponent.SetupComponent(Liquid2, '{"Align":"Bottom","Height":60,"BackgroundColor":"#228B22","MarginLeft":5,"MarginRight":5,"RoundHeight":5,"RoundWidth":5}');</div><div>&nbsp;&nbsp;</div><div>&nbsp; Liquid3 = MyForm.AddNewProPanel(CylinderPanel, 'Liquid3'); // Su</div><div>&nbsp; clComponent.SetupComponent(Liquid3, '{"Align":"Bottom","Height":60,"BackgroundColor":"#00BFFF","MarginLeft":5,"MarginRight":5}');</div><div>&nbsp;&nbsp;</div><div>&nbsp; Liquid4 = MyForm.AddNewProPanel(CylinderPanel, 'Liquid4'); // Yağ</div><div>&nbsp; clComponent.SetupComponent(Liquid4, '{"Align":"Bottom","Height":60,"BackgroundColor":"#FFD700","MarginLeft":5,"MarginRight":5}');</div><div>&nbsp;&nbsp;</div><div>&nbsp; Liquid5 = MyForm.AddNewProPanel(CylinderPanel, 'Liquid5'); // Alkol</div><div>&nbsp; clComponent.SetupComponent(Liquid5, '{"Align":"Bottom","Height":60,"BackgroundColor":"#FF4500","MarginLeft":5,"MarginRight":5}');</div><div><br></div><div>&nbsp; // Buton Alanı</div><div>&nbsp; BtnFlowBox = MyForm.AddNewLayout(MainVertBox, 'BtnFlowBox');</div><div>&nbsp; BtnFlowBox.Align = alBottom;</div><div>&nbsp; BtnFlowBox.Height = 150;</div><div>&nbsp; BtnFlowBox.Margins.Bottom = 20;</div><div><br></div><div>&nbsp; // Butonlar ve Tag Atamaları (Yoğunluk sırasına göre Tag veriyoruz)</div><div>&nbsp; BtnBal = MyForm.AddNewProButton(BtnFlowBox, 'BtnBal', 'BAL (1.42)');</div><div>&nbsp; BtnBal.Tag = 1;</div><div>&nbsp; clComponent.SetupComponent(BtnBal, '{"Align":"Top","MarginLeft":50,"MarginRight":50,"MarginTop":5,"Height":25,"BackgroundColor":"#8B4513","FontColor":"#FFFFFF","RoundHeight":10}');</div><div>&nbsp; MyForm.AddNewEvent(BtnBal, tclOnClick, 'CheckDensity');</div><div><br></div><div>&nbsp; BtnSabun = MyForm.AddNewProButton(BtnFlowBox, 'BtnSabun', 'SABUN (1.06)');</div><div>&nbsp; BtnSabun.Tag = 2;</div><div>&nbsp; clComponent.SetupComponent(BtnSabun, '{"Align":"Top","MarginLeft":50,"MarginRight":50,"MarginTop":5,"Height":25,"BackgroundColor":"#228B22","FontColor":"#FFFFFF","RoundHeight":10}');</div><div>&nbsp; MyForm.AddNewEvent(BtnSabun, tclOnClick, 'CheckDensity');</div><div><br></div><div>&nbsp; BtnSu = MyForm.AddNewProButton(BtnFlowBox, 'BtnSu', 'SU (1.00)');</div><div>&nbsp; BtnSu.Tag = 3;</div><div>&nbsp; clComponent.SetupComponent(BtnSu, '{"Align":"Top","MarginLeft":50,"MarginRight":50,"MarginTop":5,"Height":25,"BackgroundColor":"#00BFFF","FontColor":"#FFFFFF","RoundHeight":10}');</div><div>&nbsp; MyForm.AddNewEvent(BtnSu, tclOnClick, 'CheckDensity');</div><div><br></div><div>&nbsp; BtnYag = MyForm.AddNewProButton(BtnFlowBox, 'BtnYag', 'YAĞ (0.92)');</div><div>&nbsp; BtnYag.Tag = 4;</div><div>&nbsp; clComponent.SetupComponent(BtnYag, '{"Align":"Top","MarginLeft":50,"MarginRight":50,"MarginTop":5,"Height":25,"BackgroundColor":"#FFD700","FontColor":"#000000","RoundHeight":10}');</div><div>&nbsp; MyForm.AddNewEvent(BtnYag, tclOnClick, 'CheckDensity');</div><div><br></div><div>&nbsp; BtnAlkol = MyForm.AddNewProButton(BtnFlowBox, 'BtnAlkol', 'ALKOL (0.80)');</div><div>&nbsp; BtnAlkol.Tag = 5;</div><div>&nbsp; clComponent.SetupComponent(BtnAlkol, '{"Align":"Top","MarginLeft":50,"MarginRight":50,"MarginTop":5,"Height":25,"BackgroundColor":"#FF4500","FontColor":"#FFFFFF","RoundHeight":10}');</div><div>&nbsp; MyForm.AddNewEvent(BtnAlkol, tclOnClick, 'CheckDensity');</div><div><br></div><div>&nbsp; SetupLiquids;</div><div>&nbsp; MyForm.Run;</div><div>}</div><div><br></div><div>hocam buda başka bir kod buda çalışmıyorhata veriyor düzeltemedik&nbsp;</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>Mon, 11 May 2026 19:05:04 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1517&amp;PID=3489#3489</guid>
  </item> 
 </channel>
</rss>