<?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 : Toollar</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; : Toollar]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 15 Apr 2026 04:35:53 +0000</pubDate>
  <lastBuildDate>Mon, 02 Mar 2026 09:56:49 +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=1403</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[Toollar : &#231;ok te&#351;ekk&#252;r ederim.https://st...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1403&amp;PID=3194#3194</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=370">sudee.tanerr</a><br /><strong>Konu:</strong> 1403<br /><strong>Gönderim Zamanı:</strong> 02&nbsp;Mart&nbsp;2026 Saat 09:56<br /><br />çok teşekkür ederim.<a href="https://static.cloudflareinsights.com/beac&#111;n.min.js/v67327c56f0bb4ef8b305cae61679db8f1769101564043" target="_blank" rel="nofollow">https://static.cloudflareinsights.com/beacon.min.js/v67327c56f0bb4ef8b305cae61679db8f1769101564043"</a> integrity="sha512-rdcWY47ByXd76cbCFzznIcEaCN71jqkWBBqlwhF1SY7KubdLKZiEGeP7AyieKZlGP9hbY/MhGrwXzJC/HulNyg==" 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, 02 Mar 2026 09:56:49 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1403&amp;PID=3194#3194</guid>
  </item> 
  <item>
   <title><![CDATA[Toollar : Merhaba Sude,Senin i&#231;in bir &#246;rnek...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1403&amp;PID=3185#3185</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> 1403<br /><strong>Gönderim Zamanı:</strong> 02&nbsp;Mart&nbsp;2026 Saat 08:10<br /><br />Merhaba Sude,&nbsp;<br><br><br>Senin için bir örnek yazdım belki projende lazım olabilir&nbsp;<br><br><div>var</div><div>&nbsp; MyForm: TclForm;</div><div>&nbsp; CardPnl, StartContainer, EndContainer: TclProPanel;</div><div>&nbsp; LblTitle, LblStart, LblEnd, LblColon1, LblColon2, LblResult: TclProLabel;</div><div>&nbsp; CmbStartHour, CmbStartMin, CmbEndHour, CmbEndMin: TclComboBox;</div><div>&nbsp; BtnSave: TclProButton;</div><div><br></div><div>void FillTimeCombos;</div><div>var</div><div>&nbsp; i: Integer;</div><div>&nbsp; valStr: String;</div><div>{</div><div>&nbsp; for i = 0 to 23&nbsp;</div><div>&nbsp; {</div><div>&nbsp; &nbsp; if (i &lt; 10) valStr = '0' + IntToStr(i);&nbsp;</div><div>&nbsp; &nbsp; else valStr = IntToStr(i);</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; CmbStartHour.AddItem(valStr, valStr);</div><div>&nbsp; &nbsp; CmbEndHour.AddItem(valStr, valStr);</div><div>&nbsp; }</div><div>&nbsp;&nbsp;</div><div>&nbsp; for i = 0 to 59&nbsp;</div><div>&nbsp; {</div><div>&nbsp; &nbsp; if (i &lt; 10) valStr = '0' + IntToStr(i);&nbsp;</div><div>&nbsp; &nbsp; else valStr = IntToStr(i);</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; CmbStartMin.AddItem(valStr, valStr);</div><div>&nbsp; &nbsp; CmbEndMin.AddItem(valStr, valStr);</div><div>&nbsp; }</div><div><br></div><div>&nbsp; CmbStartHour.ItemIndex = 8;&nbsp;&nbsp;</div><div>&nbsp; CmbStartMin.ItemIndex = 0;&nbsp;&nbsp;</div><div>&nbsp; CmbEndHour.ItemIndex = 17;&nbsp; &nbsp;</div><div>&nbsp; CmbEndMin.ItemIndex = 30;&nbsp; &nbsp;</div><div>}</div><div><br></div><div>void GetSelectedTime;</div><div>var</div><div>&nbsp; StartTime, EndTime: String;</div><div>{</div><div>&nbsp; if ((CmbStartHour.ItemIndex == -1) || (CmbStartMin.ItemIndex == -1) ||&nbsp;</div><div>&nbsp; &nbsp; &nbsp; (CmbEndHour.ItemIndex == -1) || (CmbEndMin.ItemIndex == -1))</div><div>&nbsp; {</div><div>&nbsp; &nbsp; ShowMessage('Lütfen geçerli bir saat aralığı seçiniz.');</div><div>&nbsp; &nbsp; Exit;</div><div>&nbsp; }</div><div>&nbsp;&nbsp;</div><div>&nbsp; StartTime = CmbStartHour.Items&#091;CmbStartHour.ItemIndex&#093; + ':' + CmbStartMin.Items&#091;CmbStartMin.ItemIndex&#093;;</div><div>&nbsp; EndTime = CmbEndHour.Items&#091;CmbEndHour.ItemIndex&#093; + ':' + CmbEndMin.Items&#091;CmbEndMin.ItemIndex&#093;;</div><div>&nbsp;&nbsp;</div><div>&nbsp; LblResult.Text = 'Seçilen Zaman Aralığı: ' + StartTime + ' - ' + EndTime;</div><div>&nbsp; ShowMessage('Randevu Saati: ' + StartTime + ' ile ' + EndTime + ' arası olarak kaydedildi.');</div><div>}</div><div><br></div><div>{</div><div>&nbsp; MyForm = TclForm.Create(Self);</div><div>&nbsp; MyForm.SetFormColor('#f8fafc', '', clGNone);</div><div><br></div><div>&nbsp; CardPnl = MyForm.AddNewProPanel(MyForm, 'CardPnl');</div><div>&nbsp; CardPnl.Align = alTop; CardPnl.Height = 350;</div><div>&nbsp; CardPnl.clProSettings.BackgroundColor = clAlphaColor.clWhite;</div><div>&nbsp; CardPnl.clProSettings.BorderColor = clAlphaColor.clHexToColor('#e2e8f0');</div><div>&nbsp; CardPnl.clProSettings.BorderWidth = 1;</div><div>&nbsp; CardPnl.clProSettings.RoundHeight = 15; CardPnl.clProSettings.RoundWidth = 15;</div><div>&nbsp; CardPnl.SetclProSettings(CardPnl.clProSettings);</div><div><br></div><div>&nbsp; LblTitle = MyForm.AddNewProLabel(CardPnl, 'LblTitle', 'Zaman Aralığı Belirle');</div><div>&nbsp; LblTitle.Align = alTop; LblTitle.Height = 50;</div><div>&nbsp; LblTitle.clProSettings.FontColor = clAlphaColor.clHexToColor('#0f172a');</div><div>&nbsp; LblTitle.clProSettings.FontSize = 18;&nbsp;</div><div>&nbsp; LblTitle.clProSettings.FontHorzAlign = palCenter;&nbsp;</div><div>&nbsp; LblTitle.clProSettings.FontVertAlign = palCenter;</div><div>&nbsp; LblTitle.SetclProSettings(LblTitle.clProSettings);</div><div><br></div><div>&nbsp; LblStart = MyForm.AddNewProLabel(CardPnl, 'LblStart', 'Başlangıç Saati:');</div><div>&nbsp; LblStart.Align = alTop; LblStart.Height = 30;</div><div>&nbsp; LblStart.Margins.Left = 20; LblStart.Margins.Top = 10;</div><div>&nbsp; LblStart.clProSettings.FontColor = clAlphaColor.clHexToColor('#64748b');</div><div>&nbsp; LblStart.SetclProSettings(LblStart.clProSettings);</div><div><br></div><div>&nbsp; StartContainer = MyForm.AddNewProPanel(CardPnl, 'StartContainer');</div><div>&nbsp; StartContainer.Align = alTop; StartContainer.Height = 40;&nbsp;</div><div>&nbsp; StartContainer.Margins.Left = 20; StartContainer.Margins.Right = 20;</div><div>&nbsp;&nbsp;</div><div>&nbsp; CmbStartHour = MyForm.AddNewComboBox(StartContainer, 'CmbStartHour');</div><div>&nbsp; CmbStartHour.Align = alLeft; CmbStartHour.Width = 100;</div><div><br></div><div>&nbsp; LblColon1 = MyForm.AddNewProLabel(StartContainer, 'LblColon1', ':');</div><div>&nbsp; LblColon1.Align = alLeft; LblColon1.Width = 20;</div><div>&nbsp; LblColon1.clProSettings.FontHorzAlign = palCenter;&nbsp;</div><div>&nbsp; LblColon1.clProSettings.FontVertAlign = palCenter;</div><div>&nbsp; LblColon1.clProSettings.FontSize = 18;&nbsp;</div><div>&nbsp; LblColon1.SetclProSettings(LblColon1.clProSettings);</div><div><br></div><div>&nbsp; CmbStartMin = MyForm.AddNewComboBox(StartContainer, 'CmbStartMin');</div><div>&nbsp; CmbStartMin.Align = alLeft; CmbStartMin.Width = 100;</div><div><br></div><div>&nbsp; LblEnd = MyForm.AddNewProLabel(CardPnl, 'LblEnd', 'Bitiş Saati:');</div><div>&nbsp; LblEnd.Align = alTop; LblEnd.Height = 30;&nbsp;</div><div>&nbsp; LblEnd.Margins.Left = 20; LblEnd.Margins.Top = 20;</div><div>&nbsp; LblEnd.clProSettings.FontColor = clAlphaColor.clHexToColor('#64748b');</div><div>&nbsp; LblEnd.SetclProSettings(LblEnd.clProSettings);</div><div><br></div><div>&nbsp; EndContainer = MyForm.AddNewProPanel(CardPnl, 'EndContainer');</div><div>&nbsp; EndContainer.Align = alTop; EndContainer.Height = 40;&nbsp;</div><div>&nbsp; EndContainer.Margins.Left = 20; EndContainer.Margins.Right = 20;</div><div><br></div><div>&nbsp; CmbEndHour = MyForm.AddNewComboBox(EndContainer, 'CmbEndHour');</div><div>&nbsp; CmbEndHour.Align = alLeft; CmbEndHour.Width = 100;</div><div><br></div><div>&nbsp; LblColon2 = MyForm.AddNewProLabel(EndContainer, 'LblColon2', ':');</div><div>&nbsp; LblColon2.Align = alLeft; LblColon2.Width = 20;</div><div>&nbsp; LblColon2.clProSettings.FontHorzAlign = palCenter;&nbsp;</div><div>&nbsp; LblColon2.clProSettings.FontVertAlign = palCenter;</div><div>&nbsp; LblColon2.clProSettings.FontSize = 18;&nbsp;</div><div>&nbsp; LblColon2.SetclProSettings(LblColon2.clProSettings);</div><div><br></div><div>&nbsp; CmbEndMin = MyForm.AddNewComboBox(EndContainer, 'CmbEndMin');</div><div>&nbsp; CmbEndMin.Align = alLeft; CmbEndMin.Width = 100;</div><div><br></div><div>&nbsp; FillTimeCombos;</div><div><br></div><div>&nbsp; BtnSave = MyForm.AddNewProButton(CardPnl, 'BtnSave', 'SAATİ ONAYLA');</div><div>&nbsp; BtnSave.Align = alBottom; BtnSave.Height = 50;</div><div>&nbsp; BtnSave.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#2563eb');&nbsp;</div><div>&nbsp; BtnSave.clProSettings.FontColor = clAlphaColor.clWhite;</div><div>&nbsp; BtnSave.clProSettings.RoundHeight = 10;&nbsp;</div><div>&nbsp; BtnSave.clProSettings.RoundWidth = 10;</div><div>&nbsp; BtnSave.SetclProSettings(BtnSave.clProSettings);</div><div>&nbsp; MyForm.AddNewEvent(BtnSave, tbeOnClick, 'GetSelectedTime');</div><div><br></div><div>&nbsp; LblResult = MyForm.AddNewProLabel(MyForm, 'LblResult', 'Henüz seçim yapılmadı.');</div><div>&nbsp; LblResult.Align = alTop;&nbsp;</div><div>&nbsp; LblResult.Height = 40;&nbsp;</div><div>&nbsp; LblResult.Margins.Top = 10;</div><div>&nbsp; LblResult.clProSettings.FontHorzAlign = palCenter;</div><div>&nbsp; LblResult.clProSettings.FontColor = clAlphaColor.clHexToColor('#334155');</div><div>&nbsp; LblResult.SetclProSettings(LblResult.clProSettings);</div><div><br></div><div>&nbsp; MyForm.Run;</div><div>}<br><br><br><br><br></div><a href="https://static.cloudflareinsights.com/beac&#111;n.min.js/v67327c56f0bb4ef8b305cae61679db8f1769101564043" target="_blank" rel="nofollow">https://static.cloudflareinsights.com/beacon.min.js/v67327c56f0bb4ef8b305cae61679db8f1769101564043"</a> integrity="sha512-rdcWY47ByXd76cbCFzznIcEaCN71jqkWBBqlwhF1SY7KubdLKZiEGeP7AyieKZlGP9hbY/MhGrwXzJC/HulNyg==" 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, 02 Mar 2026 08:10:52 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1403&amp;PID=3185#3185</guid>
  </item> 
  <item>
   <title><![CDATA[Toollar : tamamd&#305;r.te&#351;ekk&#252;r ederim.https...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1403&amp;PID=3181#3181</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=370">sudee.tanerr</a><br /><strong>Konu:</strong> 1403<br /><strong>Gönderim Zamanı:</strong> 02&nbsp;Mart&nbsp;2026 Saat 07:43<br /><br />tamamdır.teşekkür ederim.<a href="https://static.cloudflareinsights.com/beac&#111;n.min.js/v67327c56f0bb4ef8b305cae61679db8f1769101564043" target="_blank" rel="nofollow">https://static.cloudflareinsights.com/beacon.min.js/v67327c56f0bb4ef8b305cae61679db8f1769101564043"</a> integrity="sha512-rdcWY47ByXd76cbCFzznIcEaCN71jqkWBBqlwhF1SY7KubdLKZiEGeP7AyieKZlGP9hbY/MhGrwXzJC/HulNyg==" 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, 02 Mar 2026 07:43:40 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1403&amp;PID=3181#3181</guid>
  </item> 
  <item>
   <title><![CDATA[Toollar : Merhaba Sude,https://www.docs.clomosy.com/TClProDateEdit...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1403&amp;PID=3177#3177</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> 1403<br /><strong>Gönderim Zamanı:</strong> 02&nbsp;Mart&nbsp;2026 Saat 07:21<br /><br />Merhaba Sude,&nbsp;<br><br><a href="https://www.docs.clomosy.com/TClProDateEdit" target="_blank" rel="nofollow">https://www.docs.clomosy.com/TClProDateEdit</a> Doküman sitesinde TclProDateEdit var&nbsp;<br>ama saat olarak bire bir ekleyebileceğin bir tool&nbsp; DataEdit gibi yok&nbsp;<a href="https://static.cloudflareinsights.com/beac&#111;n.min.js/v67327c56f0bb4ef8b305cae61679db8f1769101564043" target="_blank" rel="nofollow">https://static.cloudflareinsights.com/beacon.min.js/v67327c56f0bb4ef8b305cae61679db8f1769101564043"</a> integrity="sha512-rdcWY47ByXd76cbCFzznIcEaCN71jqkWBBqlwhF1SY7KubdLKZiEGeP7AyieKZlGP9hbY/MhGrwXzJC/HulNyg==" 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, 02 Mar 2026 07:21:37 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1403&amp;PID=3177#3177</guid>
  </item> 
  <item>
   <title><![CDATA[Toollar : Zaman aral&#305;&#287;&#305; belirtebilece&#287;im,...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1403&amp;PID=3167#3167</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=370">sudee.tanerr</a><br /><strong>Konu:</strong> 1403<br /><strong>Gönderim Zamanı:</strong> 27&nbsp;Şubat&nbsp;2026 Saat 10:16<br /><br />Zaman aralığı belirtebileceğim, saat kısmı gibi bir kısımdan başlangıç ve bitiş saati alabileceğim (TClProDateEdit) gibi bir tool var mı? Dökümantasyondan baktım fakat bulamadım.<a href="https://static.cloudflareinsights.com/beac&#111;n.min.js/v67327c56f0bb4ef8b305cae61679db8f1769101564043" target="_blank" rel="nofollow">https://static.cloudflareinsights.com/beacon.min.js/v67327c56f0bb4ef8b305cae61679db8f1769101564043"</a> integrity="sha512-rdcWY47ByXd76cbCFzznIcEaCN71jqkWBBqlwhF1SY7KubdLKZiEGeP7AyieKZlGP9hbY/MhGrwXzJC/HulNyg==" 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>Fri, 27 Feb 2026 10:16:10 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1403&amp;PID=3167#3167</guid>
  </item> 
 </channel>
</rss>