userform1 üzerinden command button ile combobox seçeneklerine göre farklı user boxlar açma

Katılım
21 Mayıs 2022
Mesajlar
2
Excel Vers. ve Dili
Microsoft® Excel® Microsoft 365 için MSO (Sürüm 2204 Derleme 16.0.15128.20210) 64 bit Visual Basic
İyi günler
"userform1" imde iki seçeneğe sahip bir combobox ve altında bir command butonum bulunmakta
Combobox ta bulunan "elma" seçeneğini seçip command butonuma tıkladığım anda" userform2" açılmasını
"armut" seçeneğini seçip aynı command butonuma tıkladığımda ise "userform3" açılmasını istiyorum

Bu konuda yardımcı olabilirseniz çok sevinirim
 

Korhan Ayhan

Administrator
Yönetici
Admin
Katılım
15 Mart 2005
Mesajlar
42,269
Excel Vers. ve Dili
Microsoft 365 Tr-En 64 Bit
Deneyiniz.

C++:
Option Explicit

Private Sub CommandButton1_Click()
    Select Case ComboBox1.Value
        Case "elma": UserForm2.Show
        Case "armut": UserForm3.Show
    End Select
End Sub
 
Katılım
21 Mayıs 2022
Mesajlar
2
Excel Vers. ve Dili
Microsoft® Excel® Microsoft 365 için MSO (Sürüm 2204 Derleme 16.0.15128.20210) 64 bit Visual Basic
Deneyiniz.

C++:
Option Explicit

Private Sub CommandButton1_Click()
    Select Case ComboBox1.Value
        Case "elma": UserForm2.Show
        Case "armut": UserForm3.Show
    End Select
End Sub
Teşekkürler kolay gelsin
 
Üst