<?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 : proje</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Genel &#304;&#351;lemler : proje]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Thu, 07 May 2026 00:26:14 +0000</pubDate>
  <lastBuildDate>Wed, 06 May 2026 21:32:37 +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=1478</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[proje : Merhaba Ya&#287;murvar Form1 : TclForm;...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1478&amp;PID=3374#3374</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> 1478<br /><strong>Gönderim Zamanı:</strong> 06&nbsp;Mayıs&nbsp;2026 Saat 21:32<br /><br />Merhaba Yağmur&nbsp;<br><div>var</div><div>&nbsp; Form1 : TclForm;</div><div>&nbsp; searchEdt : TclProEdit;</div><div>&nbsp; titleLbl : TclProLabel;</div><div>&nbsp; tempLbl : TClProLabel;</div><div>&nbsp; descLbl : TClProLabel;</div><div>&nbsp; city : String;</div><div><br></div><div>void getWeatherRequest;</div><div>var</div><div>&nbsp; MyHttp : TclHttp;</div><div>&nbsp; str : String;</div><div>&nbsp; JSONNesnesi : TCLJSONObject;</div><div>&nbsp; WeatherArr : TCLJSONArray;</div><div>&nbsp; WeatherObj : TCLJSONObject;</div><div>&nbsp; ApiDurumKodu, WeatherMetni : String;</div><div>{</div><div>&nbsp; MyHttp = TclHttp.Create(nil);</div><div>&nbsp; try</div><div>&nbsp; &nbsp; str = MyHttp.GetRequest('<a href="https://api.openweathermap.org/data/2.5/weather?q=" target="_blank" rel="nofollow">https://api.openweathermap.org/data/2.5/weather?q=</a>' + city + '&amp;appid=df699d8c75653e80730faa440e938a26&amp;units=metric&amp;lang=tr');</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; if (str &lt;&gt; '')</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; JSONNesnesi = TCLJSON.ParseToJSONObject(str);</div><div>&nbsp; &nbsp; &nbsp; try</div><div>&nbsp; &nbsp; &nbsp; &nbsp; ApiDurumKodu = JSONNesnesi.GetValue('cod').AsString;</div><div>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; if (ApiDurumKodu == '200')</div><div>&nbsp; &nbsp; &nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; tempLbl.Text = JSONNesnesi.GetValueByPath('main.temp').AsString + ' °C';</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; WeatherMetni = Clomosy.CLParseJSON(str, 'weather');</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; WeatherArr = TCLJSON.ParseToJSONArray(WeatherMetni);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (WeatherArr.Count &gt; 0)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; WeatherObj = TCLJSONObject(WeatherArr.GetItem(0));</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; descLbl.Text = WeatherObj.GetValue('description').AsString;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; descLbl.Text = UpperCase(descLbl.Text);&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; &nbsp; &nbsp; else</div><div>&nbsp; &nbsp; &nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; tempLbl.Text = 'Sehir Bulunamadi!';</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; descLbl.Text = 'Lütfen kontrol edip tekrar deneyin.';</div><div>&nbsp; &nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; &nbsp; finally</div><div>&nbsp; &nbsp; &nbsp; &nbsp; JSONNesnesi.Free;</div><div>&nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; }</div><div>&nbsp; &nbsp; else</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; tempLbl.Text = 'Baglanti Hatasi!';</div><div>&nbsp; &nbsp; &nbsp; descLbl.Text = 'Lütfen internetinizi kontrol edin.';</div><div>&nbsp; &nbsp; }</div><div>&nbsp; finally</div><div>&nbsp; &nbsp; MyHttp.Free;</div><div>&nbsp; }</div><div>}</div><div><br></div><div>void BtnOnClick;</div><div>{</div><div>&nbsp; city = searchEdt.Text;</div><div>&nbsp;&nbsp;</div><div>&nbsp; if (city &lt;&gt; '')</div><div>&nbsp; {</div><div>&nbsp; &nbsp; tempLbl.Text = 'Yükleniyor...';</div><div>&nbsp; &nbsp; descLbl.Text = '';</div><div>&nbsp; &nbsp; getWeatherRequest;</div><div>&nbsp; }</div><div>}</div><div><br></div><div>{</div><div>&nbsp; Form1 = TclForm.Create(Self);</div><div>&nbsp; Form1.SetFormColor('#F8FAFC', '', clGNone);</div><div><br></div><div>&nbsp; titleLbl = Form1.AddNewProLabel(Form1,'titleLbl','HAVA DURUMU');</div><div>&nbsp; titleLbl.Align = alTop;</div><div>&nbsp; titleLbl.Height = 80;</div><div>&nbsp; titleLbl.clProSettings.FontHorzAlign = palCenter;</div><div>&nbsp; titleLbl.clProSettings.FontVertAlign = palCenter;</div><div>&nbsp; titleLbl.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; titleLbl.clProSettings.FontSize = 24;</div><div>&nbsp; titleLbl.SetclProSettings(titleLbl.clProSettings);</div><div><br></div><div>&nbsp; searchEdt = Form1.AddNewProEdit(Form1,'searchEdt','Sehir girip Enter''a basiniz...');</div><div>&nbsp; searchEdt.Align = alTop;</div><div>&nbsp; searchEdt.Height = 50;</div><div>&nbsp; searchEdt.Margins.Left = 30;</div><div>&nbsp; searchEdt.Margins.Right = 30;</div><div>&nbsp; Form1.AddNewEvent(searchEdt,tbeOnEnter,'BtnOnClick');&nbsp;</div><div><br></div><div>&nbsp; tempLbl = Form1.AddNewProLabel(Form1,'tempLbl','');</div><div>&nbsp; tempLbl.Align = alTop;</div><div>&nbsp; tempLbl.Height = 100;</div><div>&nbsp; tempLbl.Margins.Top = 50;</div><div>&nbsp; tempLbl.clProSettings.FontHorzAlign = palCenter;</div><div>&nbsp; tempLbl.clProSettings.FontVertAlign = palCenter;</div><div>&nbsp; tempLbl.clProSettings.FontSize = 45;</div><div>&nbsp; tempLbl.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; tempLbl.SetclProSettings(tempLbl.clProSettings);</div><div><br></div><div>&nbsp; descLbl = Form1.AddNewProLabel(Form1,'descLbl','');</div><div>&nbsp; descLbl.Align = alTop;</div><div>&nbsp; descLbl.Height = 50;</div><div>&nbsp; descLbl.clProSettings.FontHorzAlign = palCenter;</div><div>&nbsp; descLbl.clProSettings.FontSize = 18;</div><div>&nbsp; descLbl.clProSettings.FontColor = clAlphaColor.clHexToColor('#64748B');&nbsp;</div><div>&nbsp; descLbl.SetclProSettings(descLbl.clProSettings);</div><div><br></div><div>&nbsp; Form1.Run;</div><div>}<br><br><br>Kodunda&nbsp;<span style=": rgb251, 251, 253;">AddNewProSearchEdit kullandığın için event tetiklenmedi.&nbsp;<br>Onun yerine TclProEdit kullandım tbeOnEnter olayını ekledim&nbsp;<br><a href="https://www.docs.clomosy.com/index.php?title=&#069;vents" target="_blank" rel="nofollow">https://www.docs.clomosy.com/index.php?title=Events</a><br><a href="https://www.docs.clomosy.com/index.php?title=AddNew&#069;vent" target="_blank" rel="nofollow">https://www.docs.clomosy.com/index.php?title=AddNewEvent</a><br>TbeOnEnter da enter tuşuyla çalışmıyor&nbsp;<br>Docs sitesinde eventların açıklamaları yer almakta bir göz atmanı isterim.&nbsp;</span></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>Wed, 06 May 2026 21:32:37 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1478&amp;PID=3374#3374</guid>
  </item> 
  <item>
   <title><![CDATA[proje : https://static.cloudflareinsig...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1478&amp;PID=3370#3370</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=437">yagmur</a><br /><strong>Konu:</strong> 1478<br /><strong>Gönderim Zamanı:</strong> 06&nbsp;Mayıs&nbsp;2026 Saat 21:15<br /><br /><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"><div><br></div><div><div style=": rgb251, 251, 253;">var</div><div style=": rgb251, 251, 253;">&nbsp; Form1 : TclForm;</div><div style=": rgb251, 251, 253;">&nbsp; searchEdt : TClProSearchEdit;</div><div style=": rgb251, 251, 253;">&nbsp; titleLbl : TclProLabel;</div><div style=": rgb251, 251, 253;">&nbsp; tempLbl : TClProLabel;</div><div style=": rgb251, 251, 253;">&nbsp; descLbl : TClProLabel;</div><div style=": rgb251, 251, 253;">&nbsp; city : String;</div><div style=": rgb251, 251, 253;"><br></div><div style=": rgb251, 251, 253;">// ==========================================</div><div style=": rgb251, 251, 253;">// HAVA DURUMU API ISTEGI (GÜNCELLENDI)</div><div style=": rgb251, 251, 253;">// ==========================================</div><div style=": rgb251, 251, 253;">void getWeatherRequest;</div><div style=": rgb251, 251, 253;">var</div><div style=": rgb251, 251, 253;">&nbsp; MyHttp : TclHttp;</div><div style=": rgb251, 251, 253;">&nbsp; str : String;</div><div style=": rgb251, 251, 253;">&nbsp; JSONNesnesi : TCLJSONObject;</div><div style=": rgb251, 251, 253;">&nbsp; WeatherArr : TCLJSONArray;</div><div style=": rgb251, 251, 253;">&nbsp; WeatherObj : TCLJSONObject;</div><div style=": rgb251, 251, 253;">&nbsp; ApiDurumKodu, WeatherMetni : String;</div><div style=": rgb251, 251, 253;">{</div><div style=": rgb251, 251, 253;">&nbsp; MyHttp = TclHttp.Create(nil);</div><div style=": rgb251, 251, 253;">&nbsp; Try</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; str = MyHttp.GetRequest('<a href="https://api.openweathermap.org/data/2.5/weather?q=" target="_blank" rel="nofollow">https://api.openweathermap.org/data/2.5/weather?q=</a>' + city + '&amp;appid=df699d8c75653e80730faa440e938a26&amp;units=metric&amp;lang=tr');</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp;&nbsp;</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; if (str &lt;&gt; '')</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; {</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; JSONNesnesi = TCLJSON.ParseToJSONObject(str);</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; Try</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; &nbsp; ApiDurumKodu = JSONNesnesi.GetValue('cod').AsString;</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; &nbsp; if (ApiDurumKodu == '200')</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; &nbsp; {</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; tempLbl.Text = JSONNesnesi.GetValueByPath('main.temp').AsString + ' °C';</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; WeatherMetni = Clomosy.CLParseJSON(str, 'weather');</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; WeatherArr = TCLJSON.ParseToJSONArray(WeatherMetni);</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (WeatherArr.Count &gt; 0)</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; WeatherObj = TCLJSONObject(WeatherArr.GetItem(0));</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; descLbl.Text = WeatherObj.GetValue('description').AsString;</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; descLbl.Text = UpperCase(descLbl.Text);&nbsp;</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; &nbsp; }</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; &nbsp; else</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; &nbsp; {</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; tempLbl.Text = 'Sehir Bulunamadi!';</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; descLbl.Text = 'Lütfen kontrol edip tekrar deneyin.';</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; &nbsp; }</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; Finally</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; &nbsp; JSONNesnesi.Free;</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; }</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; }</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; else</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; {</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; tempLbl.Text = 'Baglanti Hatasi!';</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; descLbl.Text = 'Lütfen internetinizi kontrol edin.';</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; }</div><div style=": rgb251, 251, 253;">&nbsp; Finally</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; MyHttp.Free;</div><div style=": rgb251, 251, 253;">&nbsp; }</div><div style=": rgb251, 251, 253;">}</div><div style=": rgb251, 251, 253;"><br></div><div style=": rgb251, 251, 253;">void BtnOnClick;</div><div style=": rgb251, 251, 253;">{</div><div style=": rgb251, 251, 253;">&nbsp; city = searchEdt.Text;</div><div style=": rgb251, 251, 253;">&nbsp;&nbsp;</div><div style=": rgb251, 251, 253;">&nbsp; if (city &lt;&gt; '')</div><div style=": rgb251, 251, 253;">&nbsp; {</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; tempLbl.Text = 'Yükleniyor...';</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; descLbl.Text = '';</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; getWeatherRequest; // Istegi baslat</div><div style=": rgb251, 251, 253;">&nbsp; }</div><div style=": rgb251, 251, 253;">}</div><div style=": rgb251, 251, 253;"><br></div><div style=": rgb251, 251, 253;">{</div><div style=": rgb251, 251, 253;">&nbsp; Form1 = TclForm.Create(Self);</div><div style=": rgb251, 251, 253;">&nbsp; Form1.SetFormColor('#F8FAFC', '', clGNone);</div><div style=": rgb251, 251, 253;"><br></div><div style=": rgb251, 251, 253;">&nbsp; titleLbl = Form1.AddNewProLabel(Form1,'titleLbl','HAVA DURUMU');</div><div style=": rgb251, 251, 253;">&nbsp; titleLbl.Align = alTop;</div><div style=": rgb251, 251, 253;">&nbsp; titleLbl.Height = 80;</div><div style=": rgb251, 251, 253;">&nbsp; titleLbl.clProSettings.FontHorzAlign = palCenter;</div><div style=": rgb251, 251, 253;">&nbsp; titleLbl.clProSettings.FontVertAlign = palCenter;</div><div style=": rgb251, 251, 253;">&nbsp; titleLbl.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div style=": rgb251, 251, 253;">&nbsp; titleLbl.clProSettings.FontSize = 24;</div><div style=": rgb251, 251, 253;">&nbsp; titleLbl.SetclProSettings(titleLbl.clProSettings);</div><div style=": rgb251, 251, 253;"><br></div><div style=": rgb251, 251, 253;">&nbsp; searchEdt = Form1.AddNewProSearchEdit(Form1,'searchEdt','Sehir girip Enter''a basiniz...');</div><div style=": rgb251, 251, 253;">&nbsp; searchEdt.Align = alTop;</div><div style=": rgb251, 251, 253;">&nbsp; searchEdt.Height = 50;</div><div style=": rgb251, 251, 253;">&nbsp; searchEdt.Margins.Left = 30;</div><div style=": rgb251, 251, 253;">&nbsp; searchEdt.Margins.Right = 30;</div><div style=": rgb251, 251, 253;">&nbsp; Form1.AddNewEvent(searchEdt,tbeOnEnter,'BtnOnClick');&nbsp;</div><div style=": rgb251, 251, 253;"><br></div><div style=": rgb251, 251, 253;">&nbsp; tempLbl = Form1.AddNewProLabel(Form1,'tempLbl','');</div><div style=": rgb251, 251, 253;">&nbsp; tempLbl.Align = alTop;</div><div style=": rgb251, 251, 253;">&nbsp; tempLbl.Height = 100;</div><div style=": rgb251, 251, 253;">&nbsp; tempLbl.Margins.Top = 50;</div><div style=": rgb251, 251, 253;">&nbsp; tempLbl.clProSettings.FontHorzAlign = palCenter;</div><div style=": rgb251, 251, 253;">&nbsp; tempLbl.clProSettings.FontVertAlign = palCenter;</div><div style=": rgb251, 251, 253;">&nbsp; tempLbl.clProSettings.FontSize = 45;</div><div style=": rgb251, 251, 253;">&nbsp; tempLbl.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div style=": rgb251, 251, 253;">&nbsp; tempLbl.SetclProSettings(tempLbl.clProSettings);</div><div style=": rgb251, 251, 253;"><br></div><div style=": rgb251, 251, 253;">&nbsp; descLbl = Form1.AddNewProLabel(Form1,'descLbl','');</div><div style=": rgb251, 251, 253;">&nbsp; descLbl.Align = alTop;</div><div style=": rgb251, 251, 253;">&nbsp; descLbl.Height = 50;</div><div style=": rgb251, 251, 253;">&nbsp; descLbl.clProSettings.FontHorzAlign = palCenter;</div><div style=": rgb251, 251, 253;">&nbsp; descLbl.clProSettings.FontSize = 18;</div><div style=": rgb251, 251, 253;">&nbsp; descLbl.clProSettings.FontColor = clAlphaColor.clHexToColor('#64748B');&nbsp;</div><div style=": rgb251, 251, 253;">&nbsp; descLbl.SetclProSettings(descLbl.clProSettings);</div><div style=": rgb251, 251, 253;"><br></div><div style=": rgb251, 251, 253;">&nbsp; Form1.Run;</div><div style=": rgb251, 251, 253;">}&nbsp;&nbsp;</div><div style=": rgb251, 251, 253;">kod çalışıyor ama apı çekemiyor</div></div><div style=": rgb251, 251, 253;"><br></div><div style=": rgb251, 251, 253;"><br></div>]]>
   </description>
   <pubDate>Wed, 06 May 2026 21:15:32 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1478&amp;PID=3370#3370</guid>
  </item> 
 </channel>
</rss>