<?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>C# ve SQL &#187; Örnek Kodlar</title> <atom:link href="http://www.csharptr.com/category/csharp/csharpcode/feed" rel="self" type="application/rss+xml" /><link>http://www.csharptr.com</link> <description>C# örneklerim ve kendi geliştirdiğim yazılımlar</description> <lastBuildDate>Sat, 28 Jan 2012 18:33:03 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /> <item><title>C#&#8217;ta Reflection(Yansıma) Kullanımı</title><link>http://www.csharptr.com/cta-reflectionyansima-kullanimi</link> <comments>http://www.csharptr.com/cta-reflectionyansima-kullanimi#comments</comments> <pubDate>Sun, 04 Dec 2011 17:53:44 +0000</pubDate> <dc:creator>Mertcan Kurtaran</dc:creator> <category><![CDATA[Örnek Kodlar]]></category> <category><![CDATA[C#]]></category> <category><![CDATA[reflection]]></category> <category><![CDATA[yansıma]]></category> <guid
isPermaLink="false">http://www.csharptr.com/?p=1146</guid> <description><![CDATA[C# dilinde reflection kullanarak nesnemize ait property ve metodlara erişebiliriz. Peki bunun bize ne gibi faydası olur? Reflection sayesinde sınıfımıza ait metodlar ile ilgili bilgi edinebiliriz(öznitelikleri, tipleri vs) veya sınıfımıza ait bir metodu akış sırasında çağırabiliriz.(hatta bu metodun adını bilmesek bile) Aşağıdaki örneği inceleyelim, 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace csharptrReflection &#123; [...]]]></description> <wfw:commentRss>http://www.csharptr.com/cta-reflectionyansima-kullanimi/feed</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Web Servis Örneği[Final Ödevim]</title><link>http://www.csharptr.com/web-servis-ornegifinal-odevim</link> <comments>http://www.csharptr.com/web-servis-ornegifinal-odevim#comments</comments> <pubDate>Sat, 19 Jun 2010 17:20:29 +0000</pubDate> <dc:creator>Mertcan Kurtaran</dc:creator> <category><![CDATA[Örnek Kodlar]]></category> <category><![CDATA[C#]]></category> <category><![CDATA[web service]]></category> <guid
isPermaLink="false">http://www.csharptr.com/?p=1039</guid> <description><![CDATA[Uzun zamandır siteyle ilgilenemiyorum. Eklediğim proje final projemdir ve web servis, xml ve veritabanı bağlantısı kodları içerir. Detaylı anlatım yazının devamındadır. SERVER Tarafındaki işler: 1. Server iki adet web servis acar. a. String getDbTableAsXml (String kullanıcıadı, String sifre) b. Boolean updateDbTableFromXml(String xml, String kullancıadı, String sifre) 2. Server iki adet tablo okur. Sadece bir tablo [...]]]></description> <wfw:commentRss>http://www.csharptr.com/web-servis-ornegifinal-odevim/feed</wfw:commentRss> <slash:comments>6</slash:comments> </item> <item><title>Sistemde Geçici Dosya Oluşturma[C#]</title><link>http://www.csharptr.com/sistemde-gecici-dosya-olusturmac</link> <comments>http://www.csharptr.com/sistemde-gecici-dosya-olusturmac#comments</comments> <pubDate>Wed, 12 May 2010 21:30:44 +0000</pubDate> <dc:creator>Mertcan Kurtaran</dc:creator> <category><![CDATA[Örnek Kodlar]]></category> <category><![CDATA[c# GetTempFileName]]></category> <guid
isPermaLink="false">http://www.csharptr.com/?p=1021</guid> <description><![CDATA[C# ile sistemde geçici bilgileri tutmak için GetTempFileName() metodunu kullanabiliriz.Bu metodla geçice dosya oluşturup daha sonra silebiliriz. Öncelikle sisteme 1using System.IO; kütüphanesi eklenir.Daha sonra Form Load eventine aşağıdaki kodlar yazılır.Burada temp klasörü içerisine geçici dosya oluşturularak bilgiler yazılır.Daha sonra dosya siliniyor. 12345678910111213141516171819&#160; private void Form1_Load&#40;object sender, System.EventArgs e&#41; &#160; &#123; &#160; &#160;string geçici_dosya_adı = System.IO.Path.GetTempFileName&#40;&#41;; [...]]]></description> <wfw:commentRss>http://www.csharptr.com/sistemde-gecici-dosya-olusturmac/feed</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>MDI Form Örnekleri[C#]</title><link>http://www.csharptr.com/mdi-form-ornekleric</link> <comments>http://www.csharptr.com/mdi-form-ornekleric#comments</comments> <pubDate>Mon, 12 Apr 2010 20:04:54 +0000</pubDate> <dc:creator>Mertcan Kurtaran</dc:creator> <category><![CDATA[Örnek Kodlar]]></category> <category><![CDATA[mdi form kullanımı]]></category> <guid
isPermaLink="false">http://www.csharptr.com/mdi-form-ornekleric</guid> <description><![CDATA[Form içinde form açmak için MDI formları kullanabiliriz.Basit ve kullanımı kolaydır.Önceden nasıl ekleniceğini anlatmıştık.Yazının devamından örneklere ulaşabilirsiniz. Açıklamak gerekirse MDIform yaratmak için önce eklediğimiz formun sağ taraftaki proterties kısmından IsMdiContainer kısmını true yapıcaz daha sonra ise 123456&#160; private void Form1_Load&#40;object sender, System.EventArgs e&#41; &#160; &#123; &#160; &#160;Form2 frm = new Form2&#40;&#41;; &#160; &#160;frm.MdiParent = this; [...]]]></description> <wfw:commentRss>http://www.csharptr.com/mdi-form-ornekleric/feed</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>Üst Menü Örnekleri[C#]</title><link>http://www.csharptr.com/ust-menu-ornekleric</link> <comments>http://www.csharptr.com/ust-menu-ornekleric#comments</comments> <pubDate>Sun, 11 Apr 2010 19:16:15 +0000</pubDate> <dc:creator>Mertcan Kurtaran</dc:creator> <category><![CDATA[Örnek Kodlar]]></category> <category><![CDATA[C# üst menü]]></category> <guid
isPermaLink="false">http://www.csharptr.com/ust-menu-ornekleric</guid> <description><![CDATA[Yaptığımız programları daha görsel daha kullanımı kolay hale getirmek için üst menüleri kullanabiliriz.Yazının devamında 7 adet üst menü örneği bulunmaktadır. Örnekleri aşağıdaki linklerden indirebilirsiniz.. Linkler RapidShare SendSpace Csharptr]]></description> <wfw:commentRss>http://www.csharptr.com/ust-menu-ornekleric/feed</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Araba Kiralama Programı[Ado.Net]</title><link>http://www.csharptr.com/araba-kiralama-programiado-net</link> <comments>http://www.csharptr.com/araba-kiralama-programiado-net#comments</comments> <pubDate>Fri, 09 Apr 2010 22:45:51 +0000</pubDate> <dc:creator>Mertcan Kurtaran</dc:creator> <category><![CDATA[Örnek Kodlar]]></category> <category><![CDATA[ado.net]]></category> <category><![CDATA[araba kiralama programı]]></category> <guid
isPermaLink="false">http://www.csharptr.com/araba-kiralama-programiado-net</guid> <description><![CDATA[Vize çalışması için yaptığım basit çalışma.SQL veritabanına bağlanıp veri ekleme,listeleme,değiştirme gibi işlemler yapıyor.SqlBaglanti classı kullanıyor.Anlaşılır ve basit bir uygulama. Not: SQL database klasörün içindeki .bak uzantılı dosyadır.Bu dosyayı restore edip kullanabilirsiniz. Linkler RapidShare SendSpace Csharptr]]></description> <wfw:commentRss>http://www.csharptr.com/araba-kiralama-programiado-net/feed</wfw:commentRss> <slash:comments>9</slash:comments> </item> <item><title>Resim Uygulamaları 8 Örnek[C#]</title><link>http://www.csharptr.com/resim-uygulamalari-8-ornekc</link> <comments>http://www.csharptr.com/resim-uygulamalari-8-ornekc#comments</comments> <pubDate>Mon, 05 Apr 2010 06:49:58 +0000</pubDate> <dc:creator>Mertcan Kurtaran</dc:creator> <category><![CDATA[Örnek Kodlar]]></category> <category><![CDATA[C# resim uygulamaları]]></category> <guid
isPermaLink="false">http://www.csharptr.com/resim-uygulamalari-8-ornekc</guid> <description><![CDATA[Resimler üzerinde değişiklik yapmayı,kaydetmeyi,kalitesini arttırıp düşürme gibi işlemler sağlayan örnekler VS 2005 ile derlenmiştir. Uygulamalara aşağıdaki linklerden ulaşabilirsiniz. Linkler RapidShare SendSpace Csharptr]]></description> <wfw:commentRss>http://www.csharptr.com/resim-uygulamalari-8-ornekc/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Sayıyı Yazıya Çeviren Uygulama[C#]</title><link>http://www.csharptr.com/sayiyi-yaziya-ceviren-uygulamac</link> <comments>http://www.csharptr.com/sayiyi-yaziya-ceviren-uygulamac#comments</comments> <pubDate>Sun, 04 Apr 2010 07:10:52 +0000</pubDate> <dc:creator>Mertcan Kurtaran</dc:creator> <category><![CDATA[Örnek Kodlar]]></category> <category><![CDATA[C#]]></category> <category><![CDATA[sayıyı yazıya çevirme]]></category> <guid
isPermaLink="false">http://www.csharptr.com/sayiyi-yaziya-ceviren-uygulamac</guid> <description><![CDATA[Rakamlarla girilen yazıyı sayıyıa çeviren program.Basit ve anlaşılır kodlama başlangıç için güzel örnek. Kodlar 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; namespace YazıyaÇevir &#123; &#160; &#160; /// &#60;summary&#62; &#160; &#160; /// Summary description for Form1. &#160; &#160; /// &#60;/summary&#62; &#160; &#160; public class Form1 : System.Windows.Forms.Form &#160; &#160; &#123; &#160; [...]]]></description> <wfw:commentRss>http://www.csharptr.com/sayiyi-yaziya-ceviren-uygulamac/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Hareketli Top Uygulaması[C#]</title><link>http://www.csharptr.com/hareketli-top-uygulamasic</link> <comments>http://www.csharptr.com/hareketli-top-uygulamasic#comments</comments> <pubDate>Sat, 03 Apr 2010 07:23:27 +0000</pubDate> <dc:creator>Mertcan Kurtaran</dc:creator> <category><![CDATA[Örnek Kodlar]]></category> <category><![CDATA[C# hareketli top]]></category> <category><![CDATA[dxball uygulaması]]></category> <guid
isPermaLink="false">http://www.csharptr.com/hareketli-top-uygulamasic</guid> <description><![CDATA[Eğer dxball tarzı 1oyun yapmak istiyorsanız bu kodlar size referans olabilir.Top form kenarlarına sekerek sürekli olarak form için dönüyor. Kodlar 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; namespace HareketliTop &#123; &#160; &#160; public class Form1 : System.Windows.Forms.Form &#160; &#160; &#123; &#160; private System.Windows.Forms.RadioButton radioButton1; &#160; private System.Windows.Forms.Timer timer1; &#160; private [...]]]></description> <wfw:commentRss>http://www.csharptr.com/hareketli-top-uygulamasic/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Fonksiyon Kullanımı Örnekleri[C#]</title><link>http://www.csharptr.com/fonksiyon-kullanimi-ornekleric</link> <comments>http://www.csharptr.com/fonksiyon-kullanimi-ornekleric#comments</comments> <pubDate>Fri, 02 Apr 2010 07:18:51 +0000</pubDate> <dc:creator>Mertcan Kurtaran</dc:creator> <category><![CDATA[Örnek Kodlar]]></category> <category><![CDATA[c# Asal sayı]]></category> <category><![CDATA[C# faktöriyel]]></category> <category><![CDATA[C# params]]></category> <category><![CDATA[fonksiyon kullanımı]]></category> <guid
isPermaLink="false">http://www.csharptr.com/fonksiyon-kullanimi-ornekleric</guid> <description><![CDATA[Bu yazıda fonksiyon kullanımına 4 adet örnek kod yayınlıcaz örneklerimiz şunlar; Asal Sayı Kontrolü Faktöriyel Hesabı Params ile birden fazla değer gönderme Overload Örnekler VS 2005&#8242;de derlenmiştir ve başlangıç seviyesi için uygundur. Aşağıdaki linklerden indirebilirsiniz. Linkler RapidShare SendSpace Csharptr]]></description> <wfw:commentRss>http://www.csharptr.com/fonksiyon-kullanimi-ornekleric/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>16 Adet Form Uygulaması Örneği[C#]</title><link>http://www.csharptr.com/16-adet-form-uygulamasi-ornegic</link> <comments>http://www.csharptr.com/16-adet-form-uygulamasi-ornegic#comments</comments> <pubDate>Wed, 31 Mar 2010 07:36:09 +0000</pubDate> <dc:creator>Mertcan Kurtaran</dc:creator> <category><![CDATA[Örnek Kodlar]]></category> <category><![CDATA[C#]]></category> <category><![CDATA[form örnekleri]]></category> <category><![CDATA[form uygulamaları]]></category> <guid
isPermaLink="false">http://www.csharptr.com/16-adet-form-uygulamasi-ornegic</guid> <description><![CDATA[İçeriğinde açılış formu,birden fazla form açma,form controls,help buttonu,formlar arası işlemlerin bulunduğu 16 adet örnek.Visual Studio 2005 ile derlenmiştir. Örnekleri aşağıdak linklerden indirebilirsiniz. Linkler RapidShare SendSpace Csharptr]]></description> <wfw:commentRss>http://www.csharptr.com/16-adet-form-uygulamasi-ornegic/feed</wfw:commentRss> <slash:comments>9</slash:comments> </item> <item><title>Dosyalama Örnekleri[C#]</title><link>http://www.csharptr.com/dosyalama-ornekleric</link> <comments>http://www.csharptr.com/dosyalama-ornekleric#comments</comments> <pubDate>Tue, 30 Mar 2010 08:38:11 +0000</pubDate> <dc:creator>Mertcan Kurtaran</dc:creator> <category><![CDATA[Örnek Kodlar]]></category> <category><![CDATA[C#]]></category> <category><![CDATA[dosyalama örnekleri]]></category> <guid
isPermaLink="false">http://www.csharptr.com/dosyalama-ornekleric</guid> <description><![CDATA[Dosyalamayı öncedende görmüştük kısaca verilerimizi .txt dosyalarda saklamak.Yazının devamında 6 adet örnek mevcuttur. Örnekleri aşağıdaki linklerden indirebilirsiniz. Linkler RapidShare SendSpace Csharptr]]></description> <wfw:commentRss>http://www.csharptr.com/dosyalama-ornekleric/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Dock Kullanımı Örneği[C#]</title><link>http://www.csharptr.com/dock-kullanimi-ornegic</link> <comments>http://www.csharptr.com/dock-kullanimi-ornegic#comments</comments> <pubDate>Mon, 29 Mar 2010 08:28:19 +0000</pubDate> <dc:creator>Mertcan Kurtaran</dc:creator> <category><![CDATA[Örnek Kodlar]]></category> <category><![CDATA[C#]]></category> <category><![CDATA[dock kullanımı]]></category> <category><![CDATA[parent.dock]]></category> <guid
isPermaLink="false">http://www.csharptr.com/dock-kullanimi-ornegic</guid> <description><![CDATA[C#&#8217;ta formlar üzerine yerleştirdiğimiz nesnelerimizi program içinde sağa,sola,yukarı,aşağı yaslayabiliriz.Bunu Parent.Dock ile yapıyoruz. Kodlar 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; namespace Dock &#123; &#160; public Form1&#40;&#41; &#160;&#123; &#160; InitializeComponent&#40;&#41;; &#160;&#125; &#160;private void Form1_Load&#40;object sender, System.EventArgs e&#41; &#160; &#123; &#160; &#160;string&#91;&#93; s = &#123;&#34;Yok&#34;, &#34;Sola&#34;, &#34;Sağa&#34;, &#34;Üste&#34;, &#34;Alta&#34;, &#34;İçine&#34;&#125;; &#160; &#160;comboBox1.Items.AddRange&#40;s&#41;; [...]]]></description> <wfw:commentRss>http://www.csharptr.com/dock-kullanimi-ornegic/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Dialog Kutusu Düğmeleri[C#]</title><link>http://www.csharptr.com/dialog-kutusu-dugmeleric</link> <comments>http://www.csharptr.com/dialog-kutusu-dugmeleric#comments</comments> <pubDate>Sun, 28 Mar 2010 07:55:15 +0000</pubDate> <dc:creator>Mertcan Kurtaran</dc:creator> <category><![CDATA[Örnek Kodlar]]></category> <category><![CDATA[C#]]></category> <category><![CDATA[dialog kutusu]]></category> <guid
isPermaLink="false">http://www.csharptr.com/dialog-kutusu-dugmeleric</guid> <description><![CDATA[Bu örnek ile programlarınızı kapatırken kullanıcıya çıkmak istediğinden eminmisin tarzında ekranlar çıkarabilirsiniz.Görsellik açısından güzel bir örnek. Kodlar 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; namespace DialogKutusuDüğmeleri &#123; public class Form1 : System.Windows.Forms.Form &#123; public Form1&#40;&#41; &#123; &#160; &#160; InitializeComponent&#40;&#41;; &#125; &#160; private void Form1_Load&#40;object sender, System.EventArgs e&#41; &#160; &#123; &#160; [...]]]></description> <wfw:commentRss>http://www.csharptr.com/dialog-kutusu-dugmeleric/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Datagrid Kullanımı ve Örnekleri[C#]</title><link>http://www.csharptr.com/datagrid-kullanimi-ve-ornekleri</link> <comments>http://www.csharptr.com/datagrid-kullanimi-ve-ornekleri#comments</comments> <pubDate>Thu, 25 Mar 2010 08:34:39 +0000</pubDate> <dc:creator>Mertcan Kurtaran</dc:creator> <category><![CDATA[Örnek Kodlar]]></category> <category><![CDATA[Temel Kavramlar]]></category> <category><![CDATA[C#]]></category> <category><![CDATA[datagrid kullanımı]]></category> <category><![CDATA[datagridview]]></category> <category><![CDATA[datagridview örnekleri]]></category> <category><![CDATA[örnek kod]]></category> <guid
isPermaLink="false">http://www.csharptr.com/?p=890</guid> <description><![CDATA[Datagrid&#8217;i veritabanındaki verileri görüntülerken sıkça kullanırız veritabanı olmadanda verilerimizi göze hoş biçimde görüntülemek içinde datagrid kullanılabilir.Yazının devamında anlatım ve 4 adet örnek mevcuttur. Kodlar 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; namespace DataGrid_1 &#123; &#160;public Form1&#40;&#41; &#160;&#123; &#160; &#160;InitializeComponent&#40;&#41;; &#160;&#125; &#160; private void Form1_Load&#40;object sender, System.EventArgs e&#41; &#160; &#123; &#160; [...]]]></description> <wfw:commentRss>http://www.csharptr.com/datagrid-kullanimi-ve-ornekleri/feed</wfw:commentRss> <slash:comments>7</slash:comments> </item> </channel> </rss>
