<?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="http://syndication.webwizguide.com/rss_namespace/">
 <channel>
  <title>Datakent Forum : Sayılabilir Tipler(Enums)</title>
  <link>http://forum.datakent.com/</link>
  <description>XML içerik linki; Datakent Forum : Borland Delphi : Sayılabilir Tipler(Enums)</description>
  <pubDate>Thu, 30 Apr 2026 18:33:18 +0000</pubDate>
  <lastBuildDate>Mon, 06 Dec 2010 09:38:50 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 9.54</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>forum.datakent.com/RSS_post_feed.asp?TID=2019</WebWizForums:feedURL>
  <image>
   <title>Datakent Forum</title>
   <url>http://forum.datakent.com/forum_images/datakent.com_forums.png</url>
   <link>http://forum.datakent.com/</link>
  </image>
  <item>
   <title>Sayılabilir Tipler(Enums) : unit UMain;interfaceuses Windows,...</title>
   <link>http://forum.datakent.com/forum_posts.asp?TID=2019&amp;PID=4433#4433</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="http://forum.datakent.com/member_profile.asp?PF=3122" rel="nofollow">turknetyazilim</a><br /><strong>Konu:</strong> 2019<br /><strong>Gönderim Zamanı:</strong> 06.Aralik.2010 Saat 09:38<br /><br /><DIV style="BORDER-BOTTOM: #d0d0d0 1px solid; BORDER-LEFT: #d0d0d0 1px solid; : #f0f0f0; FONT-FAMILY: monospace; COLOR: #006; BORDER-TOP: #d0d0d0 1px solid; BORDER-RIGHT: #d0d0d0 1px solid" =delphi><SPAN style="COLOR: #000000; FONT-WEIGHT: bold">unit</SPAN> UMain<SPAN style="COLOR: #000066">;</SPAN><BR><BR><SPAN style="COLOR: #000000; FONT-WEIGHT: bold">interface</SPAN><BR><BR><SPAN style="COLOR: #000000; FONT-WEIGHT: bold">uses</SPAN><BR>&nbsp; Windows<SPAN style="COLOR: #000066">,</SPAN> Messages<SPAN style="COLOR: #000066">,</SPAN> SysUtils<SPAN style="COLOR: #000066">,</SPAN> Variants<SPAN style="COLOR: #000066">,</SPAN> Classes<SPAN style="COLOR: #000066">,</SPAN> Graphics<SPAN style="COLOR: #000066">,</SPAN> Controls<SPAN style="COLOR: #000066">,</SPAN> Forms<SPAN style="COLOR: #000066">,</SPAN><BR>&nbsp; Dialogs<SPAN style="COLOR: #000066">,</SPAN> StdCtrls<SPAN style="COLOR: #000066">;</SPAN><BR><BR><SPAN style="COLOR: #000000; FONT-WEIGHT: bold">type</SPAN><BR>&nbsp; TForm1 <SPAN style="COLOR: #000066">=</SPAN> <SPAN style="COLOR: #000000; FONT-WEIGHT: bold">class</SPAN><SPAN style="COLOR: #000066">(</SPAN>TForm<SPAN style="COLOR: #000066">)</SPAN><BR>&nbsp; &nbsp; Button1<SPAN style="COLOR: #000066">:</SPAN> TButton<SPAN style="COLOR: #000066">;</SPAN><BR>&nbsp; &nbsp; <SPAN style="COLOR: #000000; FONT-WEIGHT: bold">procedure</SPAN> Button1Click<SPAN style="COLOR: #000066">(</SPAN>Sender<SPAN style="COLOR: #000066">:</SPAN> <SPAN style="COLOR: #000066; FONT-WEIGHT: bold">TObject</SPAN><SPAN style="COLOR: #000066">)</SPAN><SPAN style="COLOR: #000066">;</SPAN><BR>&nbsp; <SPAN style="COLOR: #000000; FONT-WEIGHT: bold">private</SPAN><BR>&nbsp; &nbsp; <SPAN style="FONT-STYLE: italic; COLOR: #808080">{ Private declarations }</SPAN><BR>&nbsp; <SPAN style="COLOR: #000000; FONT-WEIGHT: bold">public</SPAN><BR>&nbsp; &nbsp; <SPAN style="FONT-STYLE: italic; COLOR: #808080">{ Public declarations }</SPAN><BR>&nbsp; <SPAN style="COLOR: #000000; FONT-WEIGHT: bold">end</SPAN><SPAN style="COLOR: #000066">;</SPAN><BR><BR><SPAN style="COLOR: #000000; FONT-WEIGHT: bold">type</SPAN><BR>&nbsp;TBoyut<SPAN style="COLOR: #000066">=</SPAN><SPAN style="COLOR: #000066">(</SPAN>BytKucuk<SPAN style="COLOR: #000066">=</SPAN><SPAN style="COLOR: #0000ff">5</SPAN><SPAN style="COLOR: #000066">,</SPAN>BytOrta<SPAN style="COLOR: #000066">=</SPAN><SPAN style="COLOR: #0000ff">10</SPAN><SPAN style="COLOR: #000066">,</SPAN>BytBuyuk<SPAN style="COLOR: #000066">=</SPAN><SPAN style="COLOR: #0000ff">15</SPAN><SPAN style="COLOR: #000066">,</SPAN>BytHepsi<SPAN style="COLOR: #000066">=</SPAN>BytKucuk<SPAN style="COLOR: #000066">+</SPAN>BytOrta<SPAN style="COLOR: #000066">+</SPAN>BytBuyuk<SPAN style="COLOR: #000066">)</SPAN><SPAN style="COLOR: #000066">;</SPAN><BR><BR><BR><SPAN style="COLOR: #000000; FONT-WEIGHT: bold">type</SPAN><BR>&nbsp; TYas<SPAN style="COLOR: #000066">=</SPAN><SPAN style="COLOR: #0000ff">1</SPAN><SPAN style="COLOR: #000066">..</SPAN><SPAN style="COLOR: #0000ff">100</SPAN><SPAN style="COLOR: #000066">;</SPAN><BR><BR><SPAN style="COLOR: #000000; FONT-WEIGHT: bold">var</SPAN><BR>&nbsp; Form1<SPAN style="COLOR: #000066">:</SPAN> TForm1<SPAN style="COLOR: #000066">;</SPAN><BR><BR><SPAN style="COLOR: #000000; FONT-WEIGHT: bold">implementation</SPAN><BR><BR><SPAN style="FONT-STYLE: italic; COLOR: #008000">{$R *.dfm}</SPAN><BR><BR><BR><BR><BR><SPAN style="COLOR: #000000; FONT-WEIGHT: bold">procedure</SPAN> TForm1<SPAN style="COLOR: #000066">.</SPAN><SPAN style="COLOR: #006600">Button1Click</SPAN><SPAN style="COLOR: #000066">(</SPAN>Sender<SPAN style="COLOR: #000066">:</SPAN> <SPAN style="COLOR: #000066; FONT-WEIGHT: bold">TObject</SPAN><SPAN style="COLOR: #000066">)</SPAN><SPAN style="COLOR: #000066">;</SPAN><BR>&nbsp;<SPAN style="COLOR: #000000; FONT-WEIGHT: bold">var</SPAN><BR>&nbsp; yas<SPAN style="COLOR: #000066">:</SPAN>TYas<SPAN style="COLOR: #000066">;</SPAN><BR><SPAN style="COLOR: #000000; FONT-WEIGHT: bold">begin</SPAN><BR>&nbsp; &nbsp; &nbsp;yas<SPAN style="COLOR: #000066">:</SPAN><SPAN style="COLOR: #000066">=</SPAN><SPAN style="COLOR: #0000ff">100</SPAN><SPAN style="COLOR: #000066">;</SPAN><BR>&nbsp; &nbsp; &nbsp;ShowMessage<SPAN style="COLOR: #000066">(</SPAN><SPAN style="COLOR: #000066">IntToStr</SPAN><SPAN style="COLOR: #000066">(</SPAN>yas<SPAN style="COLOR: #000066">)</SPAN><SPAN style="COLOR: #000066">)</SPAN><SPAN style="COLOR: #000066">;</SPAN><BR><BR><SPAN style="COLOR: #000000; FONT-WEIGHT: bold">end</SPAN><SPAN style="COLOR: #000066">;</SPAN><BR><BR><SPAN style="COLOR: #000000; FONT-WEIGHT: bold">end</SPAN><SPAN style="COLOR: #000066">.</SPAN></DIV>Son :)]]>
   </description>
   <pubDate>Mon, 06 Dec 2010 09:38:50 +0000</pubDate>
   <guid isPermaLink="true">http://forum.datakent.com/forum_posts.asp?TID=2019&amp;PID=4433#4433</guid>
  </item> 
 </channel>
</rss>