|Refleks|-Oyun,Tasarım,Film,Program,Tek link,İndir
Would you like to react to this message? Create an account in a few clicks or log in to continue.

|Refleks|-Oyun,Tasarım,Film,Program,Tek link,İndir


 
AnasayfaLatest imagesAramaKayıt OlGiriş yap

 

 Değişkenler Ve Birkaç Kolay İşlem

Aşağa gitmek 
YazarMesaj
FaTaL
Yönetici
Yönetici
FaTaL


Ruh Hali : Değişkenler Ve Birkaç Kolay İşlem Manyak10
Başak Mesaj Sayısı : 626
Rep Puanı : 12348
Teşekkür Aldı : 18
Kayıt tarihi : 24/10/09
Nerden Nerden : Kocaeli
İş/Hobiler İş/Hobiler : 3D / Maya / After Efect
Lakap Lakap : Fatal

Değişkenler Ve Birkaç Kolay İşlem Empty
MesajKonu: Değişkenler Ve Birkaç Kolay İşlem   Değişkenler Ve Birkaç Kolay İşlem EmptyCuma Ekim 30, 2009 9:42 am

Değişkenlerin Alabileceği Max. Uzunluk

short yil = 0;

int sayi = 0;

long maas = 0;

float pi = 0;

int uzunluk = 0;



uzunluk = Microsoft.VisualBasic.Strings.Len(yil);

textBox1.Text = Convert.ToString(uzunluk);



uzunluk = Microsoft.VisualBasic.Strings.Len(sayi);

textBox2.Text = Convert.ToString(uzunluk);



uzunluk = Microsoft.VisualBasic.Strings.Len(maas);

textBox3.Text = Convert.ToString(uzunluk);



uzunluk = Microsoft.VisualBasic.Strings.Len(pi);

textBox4.Text = Convert.ToString(uzunluk);

---------------------------------------------------------------------------

OpenDialogButton;

string Dosya;

openFileDialog1.Title = "Dosya Seç";

openFileDialog1.ShowDialog();

Dosya = openFileDialog1.FileName;

MessageBox.Show("sectiğin dosya: " + Dosya);

---------------------------------------------------------------------------

DateTime bugün;

DateTime songün;

int ilk;

int son;

bugün = DateTime.Today;

songün = Convert.ToDateTime(textBox2.Text);

textBox1.Text = bugün.ToShortDateString();

ilk = bugün.DayOfYear;

son = songün.DayOfYear;

textBox3.Text = Convert.ToString(ilk-son);

textBox1, textBox2 *objesini ekleyiniz.

---------------------------------------------------------------------------



//Hesap Makinesi

int sayi1;

int sayi2;

int topla;

int cikar;

int carp;

int böl;



private void button1_Click(object sender, EventArgs e)

{



sayi1 = Convert.ToInt32(textBox1.Text);

sayi2 = Convert.ToInt32(textBox2.Text);

topla = sayi1 + sayi2;

textBox3.Text = topla.ToString();

}



private void button2_Click(object sender, EventArgs e)

{

sayi1 = Convert.ToInt32(textBox1.Text);

sayi2 = Convert.ToInt32(textBox2.Text);

cikar = sayi1 - sayi2;

textBox3.Text = cikar.ToString();

}



private void button3_Click(object sender, EventArgs e)

{

sayi1 = Convert.ToInt32(textBox1.Text);

sayi2 = Convert.ToInt32(textBox2.Text);

carp = sayi1 * sayi2;

textBox3.Text = carp.ToString();

}



private void button4_Click(object sender, EventArgs e)

{

sayi1 = Convert.ToInt32(textBox1.Text);

sayi2 = Convert.ToInt32(textBox2.Text);

böl = sayi1 / sayi2;

textBox3.Text = böl.ToString();

}

}

------------------------------------------------------------------

string deger = textBox1.Text;

string deger2 = textBox2.Text;

int sonuc;

sonuc = deger.IndexOf(deger2, 0);

label1.Text = Convert.ToString(sonuc);

// kaç tane var o karakterden(deger2) öğrenmek için

textBox1, textBox2, label1 *objesini ekleyiniz.

---------------------------------------------------------------------------

string deger1 = textBox1.Text;

string deger2 = textBox2.Text;

int sayi1;

sayi1 = Convert.ToInt32(textBox3.Text);

label1.Text = deger1.Insert(sayi1, deger2);

// bu kod istenilen yerden karakter ekleme yapar...

textBox1, textBox2, textBox3, label1 *objesini ekleyiniz.

---------------------------------------------------------------------------

string deger3 = textBox1.Text;

string deger4 = textBox2.Text;

label1.Text = deger3.Replace(deger3, deger4);

// bu kod ise deger3 yerine deger4 aktar...

textBox1, textBox2,label1 *objesini ekleyiniz.

---------------------------------------------------------------------------

string deger5 = textBox1.Text;

int say;

int say2;

say = Convert.ToInt32(textBox2.Text);

say2 = Convert.ToInt32(textBox3.Text);

label1.Text = deger5.Remove(say,say2);

// bu kod ise istenilen yerden istenilen karakter silinir...

textBox1, textBox2, textBox3,label1 *objesini ekleyiniz.

---------------------------------------------------------------------------

[Linkleri görebilmek için üye olun veya giriş yapın.] ; GetCreationTime

[Linkleri görebilmek için üye olun veya giriş yapın.] ; GetLastWriteTime

[Linkleri görebilmek için üye olun veya giriş yapın.] ; GetLastAccess



private void button1_Click(object sender, EventArgs e)

{

string dizin;

DateTime Zaman;

dizin = textBox1.Text;

Zaman = System.IO.Directory.GetCreationTime(dizin);

label1.Text = Zaman.ToString();

//Klasörün en son hangi saatte kaydedildiğini görmek için "GetLastWriteTime" kullanılır...

}





private void button2_Click(object sender, EventArgs e)

{

string dizin2;

DateTime Zaman2;

dizin2 = textBox1.Text;

Zaman2 = System.IO.Directory.GetLastWriteTime(dizin2);

label2.Text = Zaman2.ToString();

}



private void button3_Click(object sender, EventArgs e)

{

string dizin3;

DateTime Zaman3;

dizin3 = textBox1.Text;

Zaman3=System.IO.Directory.GetLastAccessTime(dizin 3);

linkLabel1.Text = Zaman3.ToString();

[Linkleri görebilmek için üye olun veya giriş yapın.] ; GetCreationTime

[Linkleri görebilmek için üye olun veya giriş yapın.] ; GetLastWriteTime

[Linkleri görebilmek için üye olun veya giriş yapın.] ; GetLastAccess

}

}

---------------------------------------------------------------------------

bool var_yok;

var_yok = System.IO.Directory.Exists("C:\\\\Test");

if (var_yok == false)

System.IO.Directory.CreateDirectory("C:\\\\Test");

MessageBox.Show("Daha önceden klasör mevcut olmadığından yeni oluşturldu");

else

MessageBox.Show("Hazırlamak istediğiniz klasör Mevcut");

//Burda Klasör oluşturduk ve tekrar oluşturduğumuzda bizi bilgilendirdi...

---------------------------------------------------------------------------

private void Form1_Load(object sender, EventArgs e)

{

string[] yol;

yol = System.IO.Directory.GetDirectories("C:\\\\");

foreach (string dizin in yol)

{

listBox1.Items.Add(dizin);

}



}



private void listBox1_SelectedIndexChanged(object sender, EventArgs e)

{

// seçilen klasörün alt dosyaları....

string[] dosyalar;

string yol;

yol = @listBox1.Text;

listBox2.Items.Clear();

dosyalar = System.IO.Directory.GetFileSystemEntries(yol, "*.*");

foreach (string dosya in dosyalar)

{

listBox2.Items.Add(dosya);

}

}

}







--------------------------------------------------------------------------

string deger = textBox1.Text;

string sonuc;

sonuc = Microsoft.VisualBasic.Strings.Left(deger, 5);

label1.Text =sonuc;

-------------------------------------------------------------

int Uzunluk;

Uzunluk = Microsoft.VisualBasic.Strings.Len(textBox1.Text);

label1.Text = Convert.ToString(Uzunluk);

-----------------------------------------------------

Length;

string Mrty= textBox1.Text;

int Uzunluk;

Uzunluk = Mrty.Length;

label1.Text = Convert.ToString(Uzunluk);

---------------------------------------------------------------------------



MessageBox;

DialogResult Secim;

Secim = MessageBox.Show("Mesajınız!"+"\\n"+”Bu”+"\\r"+”kıs ıma
yazılır”, "Başlık", MessageBoxButtons.YesNo,
MessageBoxIcon.Information);



--------------------------------------------------------------------------





Mid;

private void button1_Click(object sender, EventArgs e)

{

int bas;

int say;

bas = Convert.ToInt32(textBox2.Text);

say = Convert.ToInt32(textBox3.Text);

textBox4.Text = Microsoft.VisualBasic.Strings.Mid(textBox1.Text, bas, say);

}



private void textBox1_Leave(object sender, EventArgs e)

{

string ilk_deger;

string bilgi;

ilk_deger = textBox1.Text.Substring(0, 1);

bilgi = textBox1.Text.Substring(1);

bilgi = bilgi.ToLower();

ilk_deger = ilk_deger.ToUpper();

textBox1.Text = ilk_deger + bilgi;

// bu kodda ise belirtilen basamaktan kaç tane değer alınacağını belirtilir...

}

}

-------------------------------------------------------------------------

private void Form1_Click(object sender, EventArgs e)

{

linkLabel1.Text = DateTime.Now.ToString();

label1.Text = Microsoft.VisualBasic.DateAndTime.DateString;

button1.Text = Microsoft.VisualBasic.DateAndTime.TimeString;

DateTime ZaMaN;

ZaMaN = DateTime.Now;

label2.Text = ZaMaN.ToShortDateString();

label3.Text = ZaMaN.ToShortTimeString();

label4.Text = ZaMaN.ToLongTimeString();

label8.Text = ZaMaN.ToLongDateString();

DateTime Tarrih;

Tarrih = Convert.ToDateTime("30,09,2007");

label5.Text = Convert.ToString(Tarrih);

}



private void Form1_Load(object sender, EventArgs e)

{

DateTime Tarih;

int gün;

int Gün_Say;

string[] Günler ={ "Pazar", "Pazartesi", "Salı", "Çarşamba", "Perşembe", "Cuma", "Cumartesi" };

Tarih = DateTime.Today;

gün = Convert.ToInt32(Tarih.DayOfWeek);

textBox1.Text = Tarih.ToString().Substring(0, 10);

textBox2.Text = Convert.ToString(gün);

textBox3.Text=Convert.ToString(Günler[gün]);

Gün_Say = Tarih.DayOfYear;

textBox4.Text = Convert.ToString(Gün_Say);

}

}



-------------------------------------------------------------------------

private void button1_Click(object sender, EventArgs e)

{

string sifre = textBox1.Text;

int sayi;

sayi = Convert.ToInt32(textBox2.Text);

label1.Text = sifre.PadRight(sayi, ’*’);

}



private void button2_Click(object sender, EventArgs e)

{

string sifre2 = textBox1.Text;

int sayi2;

sayi2 = Convert.ToInt32(textBox2.Text);

label1.Text = sifre2.PadLeft(sayi2, ’*’);

/* istenildiği basamak sayisi kadar istediğimiz char(*)

* isaretleri koyarak o basamak sayısına tamamlar... */

}

private void button1_Click(object sender, EventArgs e)

{

label1.Text = Microsoft.VisualBasic.Strings.StrConv(textBox1.Tex t, Microsoft.VisualBasic.VbStrConv.Uppercase, 0);

// büyük yapıyor karakterleri....

}



private void button2_Click(object sender, EventArgs e)

{

label1.Text = Microsoft.VisualBasic.Strings.StrConv(textBox1.Tex t, Microsoft.VisualBasic.VbStrConv.ProperCase, 0);

//bu kod sadece ilk karakteri büyük yapar..



---------------------------------------------------------------------------





string deger = textBox1.Text;

int sayi;

sayi = Convert.ToInt32(textBox2.Text);

string sonuc;

sonuc = Microsoft.VisualBasic.Strings.Right(deger, sayi);

label1.Text = sonuc;

---------------------------------------------------------------------------

private void button1_Click(object sender, EventArgs e)

{

double sayi;

int sayi2;

sayi2 = Convert.ToInt32(textBox2.Text);

sayi=Convert.ToDouble(textBox1.Text);

double son;

son = Math.Round(sayi, sayi2);

label1.Text = Convert.ToString(son);

// istenilen virgüllü bir sayiyi yuvarla...

}



private void button2_Click(object sender, EventArgs e)

{

double say;

say = Convert.ToDouble(textBox1.Text);

double sonn;

sonn = Math.Floor(say);

label1.Text = Convert.ToString(sonn);

}



private void button3_Click(object sender, EventArgs e)

{

double sayy;

sayy = Convert.ToDouble(textBox1.Text);

double sonn1;

sonn1 = Math.Floor(sayy);

label1.Text = Convert.ToString(sonn1);

}

}

---------------------------------------------------------------------------

Microsoft.VisualBasic.Interaction.Shell("C:\\\\Win
dows\\\\Notepad.exe",Microsoft.VisualBasic.AppWinS
tyle.NormalFocus,true,-1);

// istediğimiz programı açabiliriz.

-----------------------------------------------------------------------

int sayi;

sayi = Convert.ToInt32(textBox1.Text);

int sonuc;

sonuc = Math.Sign(sayi);

label1.Text = Convert.ToString(sonuc);

//Signum Fonksiyonumuz

-----------------------------------------------

int bu;

bu = Convert.ToInt32(textBox2.Text);

label1.Text = textBox3.Text + Microsoft.VisualBasic.Strings.Space(bu) + textBox4.Text;

// BU KODDA İSE İSTEDİĞİMİZ KADAR BOŞLUK BIRAKIYORUZ

---------------------------------------------------

string [] son1;

son1 = textBox1.Text.Split(’ ’);

label1.Text=son1[0];

label2.Text=son1[1];

// Bu Kod ise belirtiğimiz karakter ile ayırma işlemini yapar...

---------------------------------------------------------------

string str;

double sayi;

str = textBox1.Text;

sayi = Convert.ToDouble(str);

sayi = Math.Sqrt(sayi);

label1.Text = Convert.ToString(sayi);

MessageBox.Show(str + "sayısının Karekökü: " + Convert.ToString(sayi));

// karekök

------------------------------------------------------------------------

int a;

a = Convert.ToInt32(textBox2.Text);

textBox1.Text = Microsoft.VisualBasic.Strings.StrDup(a, "*");

//istenildiği kadar karakter yazmamıza yarar.

---------------------------------------------------------------------------

string deger = textBox1.Text;

label1.Text = Microsoft.VisualBasic.Strings.StrReverse(deger);

// bu kod ilk-son değişimi yapar....

---------------------------------------------------------------------------

string sonuc = textBox1.Text;

int deger1;

int deger2;

deger1 = Convert.ToInt32(textBox2.Text);

deger2 = Convert.ToInt32(textBox3.Text);

label1.Text = sonuc.Substring(deger1,deger2);

başlangıç =0 olmak üzere istediğimiz basamaktan başlıyarak istenilen yere kadar

alan kod dur...

---------------------------------------------------------------------------

private void button1_Click(object sender, EventArgs e)

{

string deger = textBox1.Text;

label1.Text = deger.ToLower();

}



private void button2_Click(object sender, EventArgs e)

{

string deger2 = textBox1.Text;

label1.Text = deger2.ToUpper();



// bu kodlar büyük-küçük değişimi yapıyo

}

---------------------------------------------------------------------------

private void button1_Click(object sender, EventArgs e)

{

string deger = textBox1.Text;

label1.Text = deger.ToLower();

}



private void button2_Click(object sender, EventArgs e)

{

string deger2 = textBox1.Text;

label1.Text = deger2.ToUpper(new System.Globalization.CultureInfo("en"));

}

-----------------------------------------------------------------------

DateTime Tarih;

DateTime Simdi;

Simdi = DateTime.Now;

Tarih = DateTime.Today;

Label7.Text = Convert.ToString(Tarih);

string Tarih_Str;

Tarih = DateTime.Today;

Tarih_Str = Tarih.ToString();

Label1.Text = Tarih_Str.Substring(0, 10);

Label2.Text = Tarih.ToShortDateString();

Label3.Text = Tarih.ToLongDateString();

Label4.Text = Tarih.ToLongTimeString();

Label5.Text = Tarih.ToShortTimeString();

Label6.Text = Simdi.ToLongTimeString();

----------------------------------------------------------------

private void button1_Click(object sender, EventArgs e)

{

string deger1 = textBox1.Text;

textBox2.Text = deger1.TrimStart();

}



private void button2_Click(object sender, EventArgs e)

{

string deger2 = textBox1.Text;

textBox2.Text = deger2.TrimEnd();

}



private void button3_Click(object sender, EventArgs e)

{

string deger3 = textBox1.Text;

textBox2.Text = deger3.Trim();

// Bu kodlar girilen boşlukları siler...

// TrimStart başta girilen boşlukları

// TrimEnd sonda girilen boşlukları

// Trim Hem Başta Hemde Sondaki Boşlukları kaldırır...

}

}

private void fileListBox1_SelectedIndexChanged(object sender, EventArgs e)

{

textBox1.Text = fileListBox1.FileName;

}



private void dirListBox1_Change(object sender, EventArgs e)

{

textBox2.Text = dirListBox1.Path;

fileListBox1.Path = dirListBox1.Path;

}



private void dirListBox1_SelectedIndexChanged(object sender, EventArgs e)

{

string dizi;

dizi = dirListBox1.Path;

foreach (string dosya in System.IO.Directory.GetFiles(dizi))

{

fileListBox1.Items.Add(dosya);

}

}



private void driveListBox1_SelectedIndexChanged(object sender, EventArgs e)

{

dirListBox1.Path = driveListBox1.Drive;

}

-------------------------------------

int a;

a = Convert.ToInt32(listBox1.SelectedIndex);

int b;

b = a + 1;

label1.Text="Seçilen Sıra Numarası : " + b.ToString();

---------------------------------------------------------------------------

private void listBox1_DrawItem(object sender, DrawItemEventArgs e)

{

string eleman;

e.DrawBackground();

eleman = listBox1.Items[e.Index].ToString();

ImageList1.Draw(e.Graphics, e.Bounds.Left, e.Bounds.Top, e.Index);

e.Graphics.DrawString(eleman);

}



private void listBox1_SelectedIndexChanged(object sender, EventArgs e)

{

MessageBox.Show(listBox1.Items.ToString());

}

}

---------------------------------------------------------------------------

private void EkleBtn_Click(object sender, EventArgs e)

{

bool sonuc;

sonuc = listBox1.Items.Contains(textBox1.Text);

if (sonuc == true)

MessageBox.Show("Bu eleman mevcut","Syntax Error Gülmek Değişkenler Ve Birkaç Kolay İşlem 7");

else

listBox1.Items.Add(textBox1.Text);

}



private void button1_Click(object sender, EventArgs e)

{

int sonu;

sonu = listBox1.FindStringExact(textBox1.Text);

if (sonu < 0)

MessageBox.Show("Bu Eleman = (" + textBox1.Text + ") Mevcut değil", "Başlık");

else

listBox1.SelectedIndex = sonu;

}

}

---------------------------------------------------------------------------

if (e.KeyChar == 32)

e.Handled = true;

// handled sayesinde enter devre dışı...

---------------------------------------------------------------------------

private void timer1_Tick(object sender, EventArgs e)

{

DateTime zaman;

zaman = DateTime.Now;

textBox1.Text = zaman.ToString();

this.Text = zaman.ToString();

}



private void Form1_Load(object sender, EventArgs e)

{

timer1.Start();

}

---------------------------------------------------------------------------

namespace Slayt

{

public partial classForm1 : Form

{

public Form1()

{

InitializeComponent();

}

int i = 0;

int sayi;



private void timer1_Tick(object sender, EventArgs e)

{

pictureBox1.Image = Image.FromFile(listBox1.Items.ToString());

listBox1.SetSelected(i, true);

i = i + 1;

if (i >= sayi)

i = 0;

}

private void button2_Click(object sender, EventArgs e)

{

timer1.Start();

pictureBox1.Visible = true;

driveListBox1.Visible = false;

dirListBox1.Visible = false;

}

private void button1_Click(object sender, EventArgs e)

{

timer1.Stop();

pictureBox1.Visible = false;

driveListBox1.Visible = true;

dirListBox1.Visible = true;

}

private void driveListBox1_SelectedIndexChanged(object sender, EventArgs e)

{

dirListBox1.Path = driveListBox1.Drive;

}

private void dirListBox1_DoubleClick(object sender, EventArgs e)

{

listBox1.Items.Remove(listBox1.Text) ;

string dizin;

dizin = dirListBox1.Path;

foreach (string dosyaadi in System.IO.Directory.GetFiles(dizin))

{

if (Microsoft.VisualBasic.Strings.Right(dosyaadi.Trim (), 3) == "jpg")

listBox1.Items.Add(dosyaadi);

}

sayi = listBox1.Items.Count;

}

}

}



---------------------------------------------------------------------------

private void Form1_Load(object sender, EventArgs e)

{

monthCalendar1.MonthlyBoldedDates = new System.DateTime[] { new System.DateTime(2007, 11, 18) };

}



private void monthCalendar1_DateChanged(object sender, DateRangeEventArgs e)

{

label1.Text = monthCalendar1.SelectionStart.ToLongDateString();

if (label1.Text == "18 Kasım 2007 Pazar")

label1.Text = "Bu gün!!";

}

---------------------------------------------------------------------------

Access değil txt

}

StreamWriter Yazma;

FileStream Dosya;

StreamReader Okuma;

private void Form1_Load(object sender, EventArgs e)

{

string Yol = "Adres.txt";

Dosya = new FileStream(Yol, FileMode.Open, FileAccess.Read);

Okuma = new StreamReader(Dosya);

textBox4.Text = Okuma.ReadLine();

textBox5.Text=Okuma.ReadLine();

textBox6.Text = Okuma.ReadLine();



}



private void button1_Click(object sender, EventArgs e)

{

string Firma = textBox1.Text;

string Adres = textBox2.Text;

string Telefon = textBox3.Text;

Yazma.WriteLine(Firma);

Yazma.WriteLine(Adres);

Yazma.WriteLine(Telefon);

textBox1.Text = "";

textBox2.Text="";

textBox3.Text = "";

Yazma.Flush();

[Linkleri görebilmek için üye olun veya giriş yapın.] Aynı görev..Ancak birden fazla görev olduğu için Close yerine Flush daha mantıklı...

}



private void button2_Click(object sender, EventArgs e)

{

string Satir;

Satir = Okuma.ReadLine();

if (Satir == null)

MessageBox.Show("Satır Sonu!");

else

{

textBox4.Text = Okuma.ReadLine();

textBox5.Text = Okuma.ReadLine();

textBox6.Text = Okuma.ReadLine();

}

}

---------------------------------------------------------------------------

bool ciz;

int X1;

int Y1;

private void button1_Click(object sender, EventArgs e)

{

Graphics yazi;

yazi = this.CreateGraphics();

Font yazi_tipi=new Font("Arial",12,FontStyle.Bold);

SolidBrush renk = new SolidBrush(Color.Blue);

PointF koordinat = new PointF(20, 20);

yazi.DrawString("MRTY", yazi_tipi, renk, koordinat);

}



private void Form1_MouseMove(object sender, MouseEventArgs e)

{

Graphics cizgi;

Pen kalem = new Pen(Color.Black, 3);

Point nokta1 = new Point(X1, Y1);

Point nokta2 = new Point(e.X, e.Y);

cizgi = this.CreateGraphics();

if (ciz == true)

{

cizgi.DrawLine(kalem, nokta1, nokta2);

X1 = e.X;

Y1 = e.Y;

}

}



private void Form1_Load(object sender, EventArgs e)

{



}



private void Form1_MouseDown(object sender, MouseEventArgs e)

{

ciz = true;

X1 = e.X;

Y1 = e.Y;

}



private void Form1_MouseUp(object sender, MouseEventArgs e)

{

ciz = false;

}

}

---------------------------------------------------------------------------

[DllImport("user32.dll")]

public static extern bool PrintWindow(IntPtr Ptr1, IntPtr Ptr2, uint Sayi);





private void button1_Click(object sender, EventArgs e)

{

Size Boyut = new Size(1024, 768);

Bitmap Resim = new Bitmap(1024, 768);

System.Drawing.Graphics grafik = System.Drawing.Graphics.FromImage(Resim);

grafik.CopyFromScreen(new Point(0, 0), new Point(0, 0), Boyut);

Resim.Save("C:\\\\\\\\\\\\\\\\...\\\\\\\\\\\\\\\\T est.bmp");

---------------------------------------------------------------------------

namespace E_Mail

{

public partial classForm1 : Form

{

public Form1()

{

InitializeComponent();

}



private void Gönder_Click(object sender, EventArgs e)

{

try

{

MailMessage mesaj = new MailMessage();

SmtpMail.SmtpServer = textBox1.Text;

mesaj.From = textBox2.Text;

mesaj.To = textBox3.Text;

mesaj.Subject = textBox4.Text;

mesaj.bOdyFormat = MailFormat.Text;

mesaj.bOdy = textBox5.Text;

SmtpMail.Send(mesaj);

}

catch(System.Exception hata)

{

MessageBox.Show("hata ;" +hata);

textBox1.Focus();

}

}

}

}
Sayfa başına dön Aşağa gitmek
http://www.refleksforum.com
 
Değişkenler Ve Birkaç Kolay İşlem
Sayfa başına dön 
1 sayfadaki 1 sayfası
 Similar topics
-
» BİRKAC İSLEMLE FOTOGRAFLARINIZIN HAVASINI DEGİSTİRİN
» Birkaç İyi Adam & A Few Good Men (1992)| TR Dublaj|Tek Link 4 Alt.|
» RAPİDDEN BEKLEMEDEN İNDİRMEK ARTIK ÇOK KOLAY!
» İnternet Üzerinden Reklam İzleyerek Para Kazanmak Çok Kolay
» Wubi - Windows Uzerine En Kolay Linux (Ubuntu) Kurma, Ücretsiz

Bu forumun müsaadesi var:Bu forumdaki mesajlara cevap veremezsiniz
|Refleks|-Oyun,Tasarım,Film,Program,Tek link,İndir :: Bilgisayar Dersleri :: C#-
Buraya geçin: