@spectacuLar ilgin için saol ama benim istedigim yine olmadı. text1 e text 2 deki 2 defa yazılıyor benim istedigim bu degil.
ben text1 e "a" yazdıgımda text2 nin "1" olmasını istiyorum
if text1="b" then text2="2"
if text1="ab" then text2="12"
vb soru
- spectacuLar
- Kilobyte2

- Mesajlar: 333
- Kayıt: 21 Eyl 2006, 18:04
- cinsiyet: Erkek
- Teşekkür edildi: 3 kez

Kod: Tümünü seç
Private Sub Form_Load()
Combo1.AddItem "SPECTA"
Combo2.AddItem "CULAR"
Combo1.ListIndex = 0
End Sub
Private Sub Combo1_Click()
Combo2.ListIndex = Combo1.ListIndex
Text1 = Combo1.Text + "" + Combo2.Text
End Sub
Private Sub Combo2_Click()
Combo1.ListIndex = Combo2.ListIndex
Text1 = Combo1.Text + "" + Combo2.Text
End Sub
