<?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>Systemdoktoru.com &#187; Excel</title>
	<atom:link href="http://www.systemdoktoru.com/etiket/excel/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.systemdoktoru.com</link>
	<description>Windows Linux işletim sistemlerinin bilgi deposu</description>
	<lastBuildDate>Fri, 30 Apr 2010 19:02:04 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Excel ve ADO.NET</title>
		<link>http://www.systemdoktoru.com/2010/04/excel-ve-ado-net/</link>
		<comments>http://www.systemdoktoru.com/2010/04/excel-ve-ado-net/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 10:57:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ADO.NET]]></category>
		<category><![CDATA[Excel]]></category>

		<guid isPermaLink="false">http://www.systemdoktoru.com/?p=63</guid>
		<description><![CDATA[


                                                    
Excel ve Ado.Net
&#160;
Bu [...]]]></description>
			<content:encoded><![CDATA[</tr>
<tr>
<td colspan="3">
                                                    <span id="lblMakale">
<div align="center"><span style="font-size: medium;"><b>Excel ve Ado.Net</b></span></div>
<div align="center">&nbsp;</div>
<div><span style="">Bu yazimda Ado.Net ile Excel&rsquo;i aynen veritabani gibi kullanip veri getirme y&ouml;ntemine deginecegiz.</span></div>
<div>&nbsp;</div>
<div><span style="">Klasik y&ouml;ntemlerle excelden veri okumak ve yazmak ugrastirici olablmektedir ama Ado.Net&rsquo;e hakimseniz bir iki ufak noktaya dikkat ederek, Ado.Net ile Excel&rsquo;de veri okuma, veri ekleme ve g&uuml;ncelleme &ccedil;ok kolay hale gelmektedir. </span></div>
<div>&nbsp;</div>
<div><span style="">Simdi ise koyulalim.</span></div>
<div>&nbsp;</div>
<div><b><span style="">1.Adim:</span></b><span style=""> Bir adet Visual Studio Projesi olusturunuz.</span></div>
<div>&nbsp;</div>
<div><b><span style="">2.Adim:</span></b><span style=""> Bir adet Excel D&ouml;k&uuml;mani olusturun ve adini deneme.xls (deneme.xlsx) birakin. Bu excel dosyasini&nbsp;Visual Studio projenizin debug klas&ouml;r&uuml;n&uuml;n i&ccedil;erisine birakiniz. </span></div>
<div>&nbsp;</div>
<div><b><span style="">3.Adim:</span></b><span style=""> Form1&rsquo;e 1 adet DataGridView, 3 adet Button ekleyiniz.</span></div>
<div>&nbsp;</div>
<div><b><span style="">4.Adim:</span></b><span style=""> Projenizde Project/Add Class ile bir adet class olusturunuz. Ben ismini Class1 olarak biraktim.</span></div>
<div>&nbsp;</div>
<div><b><span style="">5.Adim:</span></b><span style=""> Class1.cs sayfasini a&ccedil;iniz ve i&ccedil;erisine asagidaki kodlari ekleyiniz.</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;">&nbsp;</div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">Eger Excel 2007 kullaniyorsaniz connection stringi asagidaki bi&ccedil;imde d&uuml;zeltiniz.<br />
</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">OleDbConnection</span><span style=""> baglanti = <span style="color: blue;">new</span> <span style="color: rgb(43, 145, 175);">OleDbConnection</span>(<span style="color: rgb(163, 21, 21);">&quot;Data Source=deneme.xlsx;Provider=Microsoft.ACE.OLEDB.12.0;Extended Properties=Excel 12.0&quot;</span>);</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;">&nbsp;</div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">using</span><span style=""> System;</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">using</span><span style=""> System.Collections.Generic;</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">using</span><span style=""> System.Linq;</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">using</span><span style=""> System.Text;</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">using</span><span style=""> System.Data.OleDb; <b>//Sizde Ekleyiniz.</b></span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">using</span><span style=""> System.Data; <b>//Sizde Ekleyiniz.</b></span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;">&nbsp;</div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">namespace</span><span style=""> WindowsFormsApplication9</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">{</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp; <span style="color: blue;">class</span> <span style="color: rgb(43, 145, 175);">Class1</span></span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp; {</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;">&nbsp;</div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span style="color: rgb(43, 145, 175);">OleDbConnection</span> baglanti = <span style="color: blue;">new</span> <span style="color: rgb(43, 145, 175);">OleDbConnection</span>(<span style="color: rgb(163, 21, 21);">&quot;Data Source=deneme.xls;Provider=Microsoft.jet.OLEDB.4.0;Extended Properties=Excel 8.0&quot;</span>);</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span style="color: rgb(43, 145, 175);">OleDbCommand</span> komut;</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;">&nbsp;</div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span style="color: blue;">public</span> <span style="color: rgb(43, 145, 175);">DataTable</span> ExcelVerileriniGetir() <b>//Veri Okuma</b></span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; komut = <span style="color: blue;">new</span> <span style="color: rgb(43, 145, 175);">OleDbCommand</span>(<span style="color: rgb(163, 21, 21);">&quot;select * from [Sayfa1$]&quot;</span>,baglanti);</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span style="color: blue;">if</span> (baglanti.State == <span style="color: rgb(43, 145, 175);">ConnectionState</span>.Closed)</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;baglanti.Open();</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span style="color: rgb(43, 145, 175);">OleDbDataReader</span> oku = komut.ExecuteReader();</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span style="color: rgb(43, 145, 175);">DataTable</span> dt = <span style="color: blue;">new</span> <span style="color: rgb(43, 145, 175);">DataTable</span>();</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; dt.Load(oku);</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span style="color: blue;">return</span> dt;</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;">&nbsp;</div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span style="color: blue;">public</span> <span style="color: blue;">void</span> KayitYap(<span style="color: blue;">string</span> adi,<span style="color: blue;">string</span> soyadi) <b>//Yeni Kayit Ekleme</b></span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; komut = <span style="color: blue;">new</span> <span style="color: rgb(43, 145, 175);">OleDbCommand</span>(<span style="color: rgb(163, 21, 21);">&quot;insert into [Sayfa1$] values (@adi,@soyadi)&quot;</span>, baglanti);</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; komut.Parameters.Add(<span style="color: rgb(163, 21, 21);">&quot;@deger1&quot;</span>,<span style="color: rgb(43, 145, 175);">OleDbType</span>.VarChar,50).Value=adi;</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; komut.Parameters.Add(<span style="color: rgb(163, 21, 21);">&quot;@deger2&quot;</span>, <span style="color: rgb(43, 145, 175);">OleDbType</span>.VarChar, 50).Value = soyadi;</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span style="color: blue;">if</span> (baglanti.State == <span style="color: rgb(43, 145, 175);">ConnectionState</span>.Closed)</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; baglanti.Open();</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; komut.ExecuteNonQuery();</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;">&nbsp;</div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span style="color: blue;">public</span> <span style="color: blue;">void</span> KayitGuncelle(<span style="color: blue;">string</span> DegisecekAd,<span style="color: blue;">string</span> DegistirilecekAd) <b>//Kayit G&uuml;ncelleme</b></span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><b><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></b><span style="">{</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; komut = <span style="color: blue;">new</span> <span style="color: rgb(43, 145, 175);">OleDbCommand</span>(<span style="color: rgb(163, 21, 21);">&quot;update [Sayfa1$] set ADI=@DegisecekAd where ADI=@DegistirilecekAd&quot;</span>, baglanti);</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; komut.Parameters.Add(<span style="color: rgb(163, 21, 21);">&quot;@DegisecekAd&quot;</span>, <span style="color: rgb(43, 145, 175);">OleDbType</span>.VarChar, 50).Value = DegisecekAd;</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; komut.Parameters.Add(<span style="color: rgb(163, 21, 21);">&quot;@DegistirilecekAd&quot;</span>, <span style="color: rgb(43, 145, 175);">OleDbType</span>.VarChar, 50).Value = DegistirilecekAd;</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span style="color: blue;">if</span> (baglanti.State == <span style="color: rgb(43, 145, 175);">ConnectionState</span>.Closed)</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; baglanti.Open();</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; komut.ExecuteNonQuery();</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;">&nbsp;</div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp; }</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">}</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;">&nbsp;</div>
<div><span style="">Burada t&uuml;m kullanim normal veri tabanlarina benzemektedir. Dikkat etmeniz gereken nokta yani normal veritabanlarindan farklilik g&ouml;steren noktalar; </span></div>
<div>&nbsp;</div>
<ul>
<li><span style="">Connection String de ki <b>Extended Properties</b> &ouml;zelligi, </span></li>
<li><span style="">OledbCommand nesnesindeki sql komutunda excel sayfalarinin &ldquo;[]&rdquo; i&ccedil;erisine konulup sayfa isminin sonuna &ldquo;$&rdquo; isareti getirilmesidir. Bizde [Sayfa1$] seklinde olduguna dikkat ediniz.</span></li>
</ul>
<div><span style="">Simdi formunuza gelerek her bir butonun Click Eventine;&nbsp;&nbsp; </span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span><span style="color: rgb(0, 128, 128);">Class1 </span><span style="">yeni = <span style="color: blue;">new</span> <span style="color: rgb(43, 145, 175);">Class1</span>();</span><span style=""><b> //Class1 den yavru degisken t&uuml;retildi.</b></span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />
</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span><span style="color: rgb(51, 102, 255);">private </span><span style=""><span style="color: blue;">void</span> button1_Click(<span style="color: blue;">object</span> sender, <span style="color: rgb(43, 145, 175);">EventArgs</span> e)</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; dataGridView1.DataSource = yeni.ExcelVerileriniGetir();</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <b>//Veriler DatagridView&rsquo;e aktarildi.</b></span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;">&nbsp;</div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span style="color: blue;">private</span> <span style="color: blue;">void</span> button2_Click(<span style="color: blue;">object</span> sender, <span style="color: rgb(43, 145, 175);">EventArgs</span> e)</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; yeni.KayitYap(<span style="color: rgb(163, 21, 21);">&quot;G&uuml;lser&quot;</span>,<span style="color: rgb(163, 21, 21);">&quot;Demirog&quot;</span>);</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <b>//Yeni Kayit ekleniyor.</b></span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;">&nbsp;</div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span style="color: blue;">private</span> <span style="color: blue;">void</span> button3_Click(<span style="color: blue;">object</span> sender, <span style="color: rgb(43, 145, 175);">EventArgs</span> e)</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; yeni.KayitGuncelle(<span style="color: rgb(163, 21, 21);">&quot;G&ouml;zde&quot;</span>,<span style="color: rgb(163, 21, 21);">&quot;Nafiye&quot;</span>);</span></div>
<div style="margin-bottom: 0.0001pt; line-height: normal;"><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <b>//Kayit G&uuml;ncceleme islemi,Nafiye isimleri G&ouml;zde oldu.</b></span></div>
<div><span style="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</span></div>
<div>&nbsp;</div>
<div><span style="">Diger yazilarimda g&ouml;r&uuml;smek &uuml;zere.</span></div>
<div>&nbsp;</div>
<div><span style="font-size: small;"><strong>Engin Demiroğ </strong><br />
</span></div>
<div><span style="font-size: small;"><strong>MCSE-MCSD.NET</strong></span><span style="font-size: medium;"><strong><br />
</strong></span></div>
<div>engin@e-learner.net</div>
<div><a href="http://www.yazilimdevi.com" target="_blank"><strong>www.yazilimdevi.com</strong></a></div>
<p></span></td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center">
                                        </p>
<table id="Table21" cellspacing="0" cellpadding="0" width="100%" border="0">
<tbody>
<tr>
<td class="menuLeftCaption" colspan="3">
]]></content:encoded>
			<wfw:commentRss>http://www.systemdoktoru.com/2010/04/excel-ve-ado-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

