<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Adil YILDIZ &#187; hedef</title>
	<atom:link href="http://www.adilyildiz.com.tr/tag/hedef/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.adilyildiz.com.tr</link>
	<description>Hayatın Bir Köşesinden Tutunan Herkes İçin Herşey</description>
	<lastBuildDate>Thu, 07 Jan 2010 19:15:31 +0000</lastBuildDate>
	<language>tr</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Görsel Programlama Proje</title>
		<link>http://www.adilyildiz.com.tr/2008/04/03/gorsel-programlama-proje/</link>
		<comments>http://www.adilyildiz.com.tr/2008/04/03/gorsel-programlama-proje/#comments</comments>
		<pubDate>Thu, 03 Apr 2008 16:52:40 +0000</pubDate>
		<dc:creator>Adil YILDIZ</dc:creator>
				<category><![CDATA[Görsel Programlama]]></category>
		<category><![CDATA[Görsel]]></category>
		<category><![CDATA[hedef]]></category>
		<category><![CDATA[programlama]]></category>
		<category><![CDATA[proje]]></category>
		<category><![CDATA[vurma]]></category>

		<guid isPermaLink="false">http://www.adilyildiz.com.tr/?p=13</guid>
		<description><![CDATA[Proje dosyasını aşağıdaki adresten indirebilirsiniz. Hedef Vurma ?View Code PASCAL1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36...]]></description>
			<content:encoded><![CDATA[<p>Proje dosyasını aşağıdaki adresten indirebilirsiniz.</p>
<p><a href="http://www.adilyildiz.com.tr/wp-content/uploads/2008/04/hedefvurma.rar">Hedef Vurma</a></p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?" onclick="pageTracker._trackPageview('/outgoing/www.ericbess.com/ericblog/2008/03/03/wp-codebox/_examples?referer=');"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p13code2'); return false;">View Code</a> PASCAL</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p132"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
</pre></td><td class="code" id="p13code2"><pre class="pascal" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">unit</span> Unit1;
&nbsp;
<span style="color: #000000; font-weight: bold;">interface</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">uses</span>
  Windows<span style="color: #339933;">,</span> Messages<span style="color: #339933;">,</span> SysUtils<span style="color: #339933;">,</span> Variants<span style="color: #339933;">,</span>
  Classes<span style="color: #339933;">,</span> Graphics<span style="color: #339933;">,</span> Controls<span style="color: #339933;">,</span> Forms<span style="color: #339933;">,</span>
  Dialogs<span style="color: #339933;">,</span> ExtCtrls<span style="color: #339933;">,</span> ComCtrls<span style="color: #339933;">,</span> StdCtrls;
&nbsp;
<span style="color: #000000; font-weight: bold;">type</span>
  TForm1 <span style="color: #339933;">=</span> class<span style="color: #009900;">&#40;</span>TForm<span style="color: #009900;">&#41;</span>
    TrackBar1<span style="color: #339933;">:</span> TTrackBar;
    TrackBar2<span style="color: #339933;">:</span> TTrackBar;
    Panel1<span style="color: #339933;">:</span> TPanel;
    Button1<span style="color: #339933;">:</span> TButton;
    Timer1<span style="color: #339933;">:</span> TTimer;
    Panel2<span style="color: #339933;">:</span> TPanel;
    Button2<span style="color: #339933;">:</span> TButton;
    Label1<span style="color: #339933;">:</span> TLabel;
    <span style="color: #000000; font-weight: bold;">procedure</span> Timer1Timer<span style="color: #009900;">&#40;</span>Sender<span style="color: #339933;">:</span> TObject<span style="color: #009900;">&#41;</span>;
    <span style="color: #000000; font-weight: bold;">procedure</span> FormCreate<span style="color: #009900;">&#40;</span>Sender<span style="color: #339933;">:</span> TObject<span style="color: #009900;">&#41;</span>;
    <span style="color: #000000; font-weight: bold;">procedure</span> Button1Click<span style="color: #009900;">&#40;</span>Sender<span style="color: #339933;">:</span> TObject<span style="color: #009900;">&#41;</span>;
    <span style="color: #000000; font-weight: bold;">procedure</span> Button2Click<span style="color: #009900;">&#40;</span>Sender<span style="color: #339933;">:</span> TObject<span style="color: #009900;">&#41;</span>;
    <span style="color: #000000; font-weight: bold;">procedure</span> hedefbelirle<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>;
  <span style="color: #000000; font-weight: bold;">private</span>
    <span style="color: #666666; font-style: italic;">{ Private declarations }</span>
  <span style="color: #000000; font-weight: bold;">public</span>
    <span style="color: #666666; font-style: italic;">{ Public declarations }</span>
  <span style="color: #000000; font-weight: bold;">end</span>;
&nbsp;
<span style="color: #000000; font-weight: bold;">var</span>
  Form1<span style="color: #339933;">:</span> TForm1;
  puan<span style="color: #339933;">:</span> <span style="color: #000066; font-weight: bold;">integer</span>;
&nbsp;
<span style="color: #000000; font-weight: bold;">implementation</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">uses</span> Math;
&nbsp;
<span style="color: #666666; font-style: italic;">{$R *.dfm}</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">procedure</span> TForm1.<span style="color: #0066ee;">Timer1Timer</span><span style="color: #009900;">&#40;</span>Sender<span style="color: #339933;">:</span> TObject<span style="color: #009900;">&#41;</span>;
<span style="color: #000000; font-weight: bold;">begin</span>
hedefbelirle<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>;
<span style="color: #000000; font-weight: bold;">end</span>;
&nbsp;
<span style="color: #000000; font-weight: bold;">procedure</span> TForm1.<span style="color: #0066ee;">hedefbelirle</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>;
<span style="color: #000000; font-weight: bold;">begin</span>
panel1.<span style="color: #0066ee;">Left</span><span style="color: #339933;">:=</span>Random<span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">360</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">+</span><span style="color: #cc66cc;">40</span>;
panel1.<span style="color: #0066ee;">Top</span><span style="color: #339933;">:=</span>Random<span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">360</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">+</span><span style="color: #cc66cc;">40</span>;
<span style="color: #000000; font-weight: bold;">end</span>;
&nbsp;
<span style="color: #000000; font-weight: bold;">procedure</span> TForm1.<span style="color: #0066ee;">FormCreate</span><span style="color: #009900;">&#40;</span>Sender<span style="color: #339933;">:</span> TObject<span style="color: #009900;">&#41;</span>;
<span style="color: #000000; font-weight: bold;">begin</span>
randomize;
<span style="color: #000000; font-weight: bold;">end</span>;
&nbsp;
<span style="color: #000000; font-weight: bold;">procedure</span> TForm1.<span style="color: #0066ee;">Button1Click</span><span style="color: #009900;">&#40;</span>Sender<span style="color: #339933;">:</span> TObject<span style="color: #009900;">&#41;</span>;
<span style="color: #000000; font-weight: bold;">begin</span>
hedefbelirle<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>;
Timer1.<span style="color: #0066ee;">Enabled</span><span style="color: #339933;">:=</span><span style="color: #000000; font-weight: bold;">true</span>;
puan<span style="color: #339933;">:=</span><span style="color: #cc66cc;">0</span>;
Label1.<span style="color: #0066ee;">Caption</span><span style="color: #339933;">:=</span><span style="color: #ff0000;">'0'</span>;
<span style="color: #000000; font-weight: bold;">end</span>;
&nbsp;
<span style="color: #000000; font-weight: bold;">procedure</span> TForm1.<span style="color: #0066ee;">Button2Click</span><span style="color: #009900;">&#40;</span>Sender<span style="color: #339933;">:</span> TObject<span style="color: #009900;">&#41;</span>;
<span style="color: #000000; font-weight: bold;">begin</span>
<span style="color: #000000; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span>TrackBar1.<span style="color: #0066ee;">Position</span>&gt;Panel1.<span style="color: #0066ee;">Left</span><span style="color: #009900;">&#41;</span> <span style="color: #000066;">and</span>
<span style="color: #009900;">&#40;</span>TrackBar1.<span style="color: #0066ee;">Position</span>&lt;Panel1.<span style="color: #0066ee;">Left</span><span style="color: #339933;">+</span>Panel1.<span style="color: #0066ee;">Width</span><span style="color: #009900;">&#41;</span> <span style="color: #000066;">and</span>
<span style="color: #009900;">&#40;</span>TrackBar2.<span style="color: #0066ee;">Position</span>&gt;Panel1.<span style="color: #0066ee;">Top</span><span style="color: #009900;">&#41;</span> <span style="color: #000066;">and</span>
<span style="color: #009900;">&#40;</span>TrackBar2.<span style="color: #0066ee;">Position</span>&lt;Panel1.<span style="color: #0066ee;">Top</span><span style="color: #339933;">+</span>Panel1.<span style="color: #0066ee;">Height</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #000000; font-weight: bold;">then</span>
<span style="color: #000000; font-weight: bold;">begin</span>
ShowMessage<span style="color: #009900;">&#40;</span><span style="color: #ff0000;">'Vurdun'</span><span style="color: #009900;">&#41;</span>;
puan<span style="color: #339933;">:=</span>puan<span style="color: #339933;">+</span><span style="color: #cc66cc;">10</span>;
label1.<span style="color: #0066ee;">Caption</span><span style="color: #339933;">:=</span>inttostr<span style="color: #009900;">&#40;</span>puan<span style="color: #009900;">&#41;</span>;
<span style="color: #000000; font-weight: bold;">end</span>
<span style="color: #000000; font-weight: bold;">else</span>
<span style="color: #000000; font-weight: bold;">begin</span>
ShowMessage<span style="color: #009900;">&#40;</span><span style="color: #ff0000;">'Vuramadın'</span><span style="color: #009900;">&#41;</span>;
puan<span style="color: #339933;">:=</span>puan<span style="color: #339933;">-</span><span style="color: #cc66cc;">5</span>;
label1.<span style="color: #0066ee;">Caption</span><span style="color: #339933;">:=</span>inttostr<span style="color: #009900;">&#40;</span>puan<span style="color: #009900;">&#41;</span>;
<span style="color: #000000; font-weight: bold;">end</span>;
&nbsp;
hedefbelirle<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>;
<span style="color: #000000; font-weight: bold;">end</span>;
&nbsp;
<span style="color: #000000; font-weight: bold;">end</span>.</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.adilyildiz.com.tr/2008/04/03/gorsel-programlama-proje/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
