Visual Basic Basit Hesaplama İşlemleri

Kategori

Visual Basic Basit Hesaplama İşlemleri

Visual Basic programlama dili ile basit hesaplama işlemleri.

ilk olarak bir form oluşturuyoruz ve içerisinde 2 tane textbox 1 tane label 4 tane buton atıyoruz ve düzenliyoruz. butonların text özelliklerine +, -, x, / işaretleri koyuyoruz.

 

+ butonu üzerine çift tıklıyoruz ve click özelliğine 

Dim sayi1, sayi2 As Integer
sayi1 = TextBox1.Text
sayi2 = TextBox2.Text
Label1.Text = sayi1 + sayi2

 

-  butonu üzerine çift tıklıyoruz ve click özelliğine 

Label1.Text = TextBox1.Text - TextBox2.Text

 

x  butonu üzerine çift tıklıyoruz ve click özelliğine

Label1.Text = TextBox1.Text * TextBox2.Text

 

/  butonu üzerine çift tıklıyoruz ve click özelliğine

Label1.Text = TextBox1.Text / TextBox2.Text

 

kodumuuzun son hali

Public Class Form1

    Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
        Dim sayi1, sayi2 As Integer
        sayi1 = TextBox1.Text
        sayi2 = TextBox2.Text
        Label1.Text = sayi1 + sayi2
    End Sub

    Private Sub Button2_Click(sender As System.Object, e As System.EventArgs) Handles Button2.Click
        Label1.Text = TextBox1.Text - TextBox2.Text
    End Sub

    Private Sub Button3_Click(sender As System.Object, e As System.EventArgs) Handles Button3.Click
        Label1.Text = TextBox1.Text * TextBox2.Text
    End Sub

    Private Sub Button4_Click(sender As System.Object, e As System.EventArgs) Handles Button4.Click
        Label1.Text = TextBox1.Text / TextBox2.Text
    End Sub
End Class

 

örnek kodları indirmek için tıklayınız

Facebookta Paylaş Tweetle