kadirselen
Mesaj Sayısı : 550 Kayıt tarihi : 15/08/10 Yaş : 34 Nerden : Denizli Cinsiyet :
| Konu: Vısual Studio 2005 COMBOBOX İLE 4 İŞLEM Salı Ağus. 17, 2010 2:04 pm | |
| Toolbox'tan gereken araçlar 3 tane textbox 1 tane combobox 1 tane button - Kod:
-
Dim a, b, c As Integer A = CInt(TextBox1.Text) b = CInt(TextBox2.Text) If ComboBox1.Text = "TOPLA" Then c = A + b TextBox3.Text = CStr(c) ElseIf ComboBox1.Text = "ÇARP" Then c = A * b TextBox3.Text = CStr(c) ElseIf ComboBox1.Text = "ÇIKAR" Then c = A - b TextBox3.Text = CStr(c) ElseIf ComboBox1.Text = "BÖLME" Then
c = A / b TextBox3.Text = CStr(c) End If
| KADİR SELEN-HAKAN ŞEN | | |
|