<?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>Kod Ara</title>
	<atom:link href="http://www.kodara.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.kodara.com</link>
	<description>Programlama dillerine ait örnek hazır kodlar ve makaleler bulunmaktadır.</description>
	<lastBuildDate>Sat, 03 Dec 2011 00:31:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Dosya Kopyalama &#8211; Visual Basic.Net ( Kod )</title>
		<link>http://www.kodara.com/dosya-kopyalama-visual-basic-net-kod.html</link>
		<comments>http://www.kodara.com/dosya-kopyalama-visual-basic-net-kod.html#comments</comments>
		<pubDate>Fri, 04 Nov 2011 22:30:01 +0000</pubDate>
		<dc:creator>Reason</dc:creator>
				<category><![CDATA[Visual Basic.Net]]></category>

		<guid isPermaLink="false">http://www.kodara.com/?p=256</guid>
		<description><![CDATA[Dosyaların fiziksel olarak baska bir konuma kopyalanmasını sağlayan vb.net uygulamasıdır. Formunuza bir buton ekleyin ve butonun koduna aşağıdakileri yazın. Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click FileCopy(&#8220;d:\projeler\\datalar\cariler.xml&#8220;, &#8220;c:\cariler.xml&#8221;) FileCopy(&#8220;d:\projeler\datalar\stoklar.xml&#8221;, &#8220;c:\stoklar.xml&#8220;) FileCopy(&#8220;d:\projeler\datalar\irsaliye.xml&#8221;, &#8220;c:\irsaliye.xml&#8220;) FileCopy(&#8220;d:\projeler\datalar\fatura.xml&#8221;, &#8220;c:\fatura.xml&#8220;) MessageBox.Show(&#8220;Dosya Kopyalama İşlemi Tamamlanmıştır&#8220;) End Sub &#8211; yukarıdaki örneği kendinize göre istediğiniz gibi değiştirerek kullanma imkanınız [...]]]></description>
		<wfw:commentRss>http://www.kodara.com/dosya-kopyalama-visual-basic-net-kod.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Commandtext ile SQL Kullanımı &#8211; Visual Basic.Net ( Kod )</title>
		<link>http://www.kodara.com/commandtext-ile-sql-kullanimi-visual-basic-net-kod.html</link>
		<comments>http://www.kodara.com/commandtext-ile-sql-kullanimi-visual-basic-net-kod.html#comments</comments>
		<pubDate>Fri, 04 Nov 2011 22:26:35 +0000</pubDate>
		<dc:creator>Reason</dc:creator>
				<category><![CDATA[Visual Basic.Net]]></category>

		<guid isPermaLink="false">http://www.kodara.com/?p=253</guid>
		<description><![CDATA[Command yardımı ile veritabanında silme ,ekleme ve güncelleme işlemlerini online yapmak mümkün.. Neden mi? online dataadapter üzerinden yapılan işlemler offline gerçekleşir yani bir dataset te tutulur ve geri güncellendiği zaman server&#38;veritabanına yazar. Aşağıdaki kodda mevcut bir veritabanındaki kayıdı Id ye göre siler yanlız ben bu kodu hazırlarken sql server kullandım benim bir projemden alıntıdır.. evet [...]]]></description>
		<wfw:commentRss>http://www.kodara.com/commandtext-ile-sql-kullanimi-visual-basic-net-kod.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hesap Makinesi &#8211; Visual Basic.Net ( Kod )</title>
		<link>http://www.kodara.com/hesap-makinesi-visual-basic-net-kod.html</link>
		<comments>http://www.kodara.com/hesap-makinesi-visual-basic-net-kod.html#comments</comments>
		<pubDate>Fri, 04 Nov 2011 22:12:56 +0000</pubDate>
		<dc:creator>Reason</dc:creator>
				<category><![CDATA[Visual Basic.Net]]></category>
		<category><![CDATA[hesap makinesi kodları]]></category>

		<guid isPermaLink="false">http://www.kodara.com/?p=250</guid>
		<description><![CDATA[.Net&#8217;e yeni başlayanlar için basit bir hesap makinesi uygulaması örneği.. Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim a As Integer, b As Integer a = TextBox1.Text b = TextBox2.Text MsgBox(&#8220;İki sayının toplamı&#8221; &#38; &#8221; &#8221; &#38; a + b)     End Sub     Private Sub Button2_Click(ByVal [...]]]></description>
		<wfw:commentRss>http://www.kodara.com/hesap-makinesi-visual-basic-net-kod.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Form Soldurma Efekti &#8211; Visual Basic.Net ( Kod )</title>
		<link>http://www.kodara.com/form-soldurma-efekti-visual-basic-net-kod.html</link>
		<comments>http://www.kodara.com/form-soldurma-efekti-visual-basic-net-kod.html#comments</comments>
		<pubDate>Fri, 04 Nov 2011 00:42:50 +0000</pubDate>
		<dc:creator>Reason</dc:creator>
				<category><![CDATA[Visual Basic.Net]]></category>
		<category><![CDATA[Vb.net de form soldurma]]></category>

		<guid isPermaLink="false">http://www.kodara.com/?p=247</guid>
		<description><![CDATA[Formlar açılırken veya kapanırken solarak açılır veya kapanmasını sağlamaktadır. form kapanırken fade away; forma name ozelligi btnexit olan bir buton surukleyelip  butonun click olayına dim d as double ile baslayan kodları ekleyelin Private Sub btnexit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btndexit.Click Dim d As Double For d = 1 To 0 + [...]]]></description>
		<wfw:commentRss>http://www.kodara.com/form-soldurma-efekti-visual-basic-net-kod.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kayıt Yapma &#8211; Visual Basic.Net ( Kod )</title>
		<link>http://www.kodara.com/kayit-yapma-visual-basic-net-kod.html</link>
		<comments>http://www.kodara.com/kayit-yapma-visual-basic-net-kod.html#comments</comments>
		<pubDate>Fri, 04 Nov 2011 00:31:20 +0000</pubDate>
		<dc:creator>Reason</dc:creator>
				<category><![CDATA[Visual Basic.Net]]></category>
		<category><![CDATA[formların kayıt edilmesi vb.net]]></category>

		<guid isPermaLink="false">http://www.kodara.com/?p=244</guid>
		<description><![CDATA[Kayıt almak, kayıt yapmak için gerekli bir uygulama kod dizisidir. Dim ad(20) As String Dim soyad(20) As String Dim no(20) As Integer Dim cinsiyet(20) As String Dim bolum(20) As String Dim ders(20) As String Dim i As Integer     Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load     End Sub    [...]]]></description>
		<wfw:commentRss>http://www.kodara.com/kayit-yapma-visual-basic-net-kod.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Şifreli Form Uygulaması &#8211; Visual Basic.Net ( Kod )</title>
		<link>http://www.kodara.com/sifreli-form-uygulamasi-visual-basic-net-kod.html</link>
		<comments>http://www.kodara.com/sifreli-form-uygulamasi-visual-basic-net-kod.html#comments</comments>
		<pubDate>Fri, 04 Nov 2011 00:13:21 +0000</pubDate>
		<dc:creator>Reason</dc:creator>
				<category><![CDATA[Visual Basic.Net]]></category>
		<category><![CDATA[vb.net şifreli form kod]]></category>

		<guid isPermaLink="false">http://www.kodara.com/?p=241</guid>
		<description><![CDATA[Bu kodu formun load kısmına yazmanız gerekmektedir kod visual basic.net de çalışmaktadır. &#8216;Şifre:@@@@@@ Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim Password, Pword Password = &#8220;@@@@@@&#8221; Pword = InputBox(&#8220;Lütfen şifreyi giriniz.&#8221;, &#8220;Şifre&#8221;, &#8220;&#8221;) If Pword &#60;&#62; Password Then MsgBox(&#8220;Üzgünüm, şifre yanlış&#8221;, , &#8220;Yanlış&#8220;)   End         End If     End [...]]]></description>
		<wfw:commentRss>http://www.kodara.com/sifreli-form-uygulamasi-visual-basic-net-kod.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XP Buton Yapmak &#8211; Visual Basic.Net ( Kod )</title>
		<link>http://www.kodara.com/xp-buton-yapmak-visual-basic-net-kod.html</link>
		<comments>http://www.kodara.com/xp-buton-yapmak-visual-basic-net-kod.html#comments</comments>
		<pubDate>Fri, 04 Nov 2011 00:03:46 +0000</pubDate>
		<dc:creator>Reason</dc:creator>
				<category><![CDATA[Visual Basic.Net]]></category>
		<category><![CDATA[vb.net xp button yapma]]></category>

		<guid isPermaLink="false">http://www.kodara.com/?p=238</guid>
		<description><![CDATA[&#8216;VB.net de butonları XP yapmak icin &#8216;(form1 in ustundeki button1 icin) &#8216;oncelikle vb.net in drawing clasını  import etmeliyiz, &#8216;bunun icin formun en ustune; Imports System.Drawing.Drawing2 &#8216;bundan sonra windows form designer generated code ifadesinin &#8216;hemen altına grekli tanımlamaları yapalım; Enum BtnState Disabled Normal Hot Pushed End Enum Const cornerR As Integer = 4 Const cornerD As [...]]]></description>
		<wfw:commentRss>http://www.kodara.com/xp-buton-yapmak-visual-basic-net-kod.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Form Uygulaması &#8211; Visual Basic.Net ( Kod )</title>
		<link>http://www.kodara.com/form-uygulamasi-visual-basic-net-kod.html</link>
		<comments>http://www.kodara.com/form-uygulamasi-visual-basic-net-kod.html#comments</comments>
		<pubDate>Thu, 03 Nov 2011 23:53:50 +0000</pubDate>
		<dc:creator>Reason</dc:creator>
				<category><![CDATA[Visual Basic.Net]]></category>
		<category><![CDATA[vb.net form kodu]]></category>
		<category><![CDATA[vb.net form örneği]]></category>

		<guid isPermaLink="false">http://www.kodara.com/?p=235</guid>
		<description><![CDATA[Formun FormBorderStyle özelliğini none yaparak başlık çubuğunun ve kenarlarının kaldırılmasını sağlayalım. BackColor özelliğinden uygun bir renk seçelim. 3 adet button ekleyelim text özelliklerini ( _ &#8211; X  ) yapalım. boyutlarını iyice küçültüp forun sağ üst köşesine yerleştirelim. Anchor özelliklerini top, right yaparak sürekli formun sağ üst köşesinde kalmalarını sağlayalım. Aşağıdaki kodu projemize ekleyelim,açıklamaları üzerlerinde yazıyor. [...]]]></description>
		<wfw:commentRss>http://www.kodara.com/form-uygulamasi-visual-basic-net-kod.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fareden Kaçan Buton &#8211; Visual Basic.Net ( Kod )</title>
		<link>http://www.kodara.com/fareden-kacan-buton-visual-basic-net-kod.html</link>
		<comments>http://www.kodara.com/fareden-kacan-buton-visual-basic-net-kod.html#comments</comments>
		<pubDate>Fri, 28 Oct 2011 22:49:16 +0000</pubDate>
		<dc:creator>Reason</dc:creator>
				<category><![CDATA[Visual Basic.Net]]></category>

		<guid isPermaLink="false">http://www.kodara.com/?p=232</guid>
		<description><![CDATA[Bu buttonu yakalamak imkansız sanırım Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load Button1.Text = &#8220;Tıklama Sakın&#8221; End Sub Private Sub Button1_MouseMove(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Button1.MouseMove Button1.Left = Rnd() * Width &#8211; 50 Button1.Top = Rnd() * Height &#8211; 50 End Sub]]></description>
		<wfw:commentRss>http://www.kodara.com/fareden-kacan-buton-visual-basic-net-kod.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Şaka Programı &#8211; Visual Basic.Net ( Kod )</title>
		<link>http://www.kodara.com/saka-programi-visual-basic-net-kod.html</link>
		<comments>http://www.kodara.com/saka-programi-visual-basic-net-kod.html#comments</comments>
		<pubDate>Fri, 28 Oct 2011 22:41:12 +0000</pubDate>
		<dc:creator>Reason</dc:creator>
				<category><![CDATA[Visual Basic.Net]]></category>
		<category><![CDATA[şaka programı kodlamak]]></category>
		<category><![CDATA[şaka programı yapmak]]></category>

		<guid isPermaLink="false">http://www.kodara.com/?p=229</guid>
		<description><![CDATA[Formunuza 1 adet timer 1 adet progressbar koyun.progressbarın properties ayarından value yi 100 yapın.timerin interval özelliğini 1000 yapın. enabled özelliğinide ture yapın. 1 adet label koyup içine &#8220;bilgisayarınız 10 sn.sonra kaydedilen bütün bilgileri silecektir&#8221; yazın ve aşağıdaki kodu kopyalayın.basit bir şaka programıdır belki bir işinize yarayabilir. Private Sub Timer1_Elapsed(ByVal sender As Object, ByVal e As [...]]]></description>
		<wfw:commentRss>http://www.kodara.com/saka-programi-visual-basic-net-kod.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

