All Basic

Sanal Alemin En Büyük Vb Kod Arşivi

Visual Basic

Visual Basic, Microsoft tarafından, Basic programlama dili üzerinde geliştirilmiş, olay yönlendirmeli, üst seviye, nesne tabanlı ve görsel bir programlama dilidir.

AllBasic

GSM örneği

Bu programın amacı hem bilmediğiz kodları göstermek, hem de telefoncular için bir deneme programı oluşturmak.

http://img.sanalkurs.net/uploads/6632GSM_ornegi.jpg

Public Class Form1
Dim hesap, toplam As Integer
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
If CheckBox1.Checked Then
toplam = Val(TextBox1.Text) * 1.25
TextBox2.Text = toplam
End If
If RadioButton1.Checked Then
toplam = Val(TextBox1.Text) + 10
TextBox2.Text = toplam
End If
If RadioButton1.Checked And CheckBox1.Checked Then
toplam = (Val(TextBox1.Text) * 1.25) + 10
TextBox2.Text = toplam
End If
End Sub


Private Sub ComboBox1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ComboBox1.SelectedIndexChanged
If ComboBox1.Text = "Avea" Then
TextBox1.Text = "10"
End If
If ComboBox1.Text = "Turkcell" Then
TextBox1.Text = "12"
End If
If ComboBox1.Text = "Vodafone" Then
TextBox1.Text = "8"
End If
End Sub

Private Sub RadioButton2_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioButton2.CheckedChanged
MsgBox("kontör yüklemek istiyormusunuz", MsgBoxStyle.YesNo)
End Sub
End Class