• DİKKAT

    DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
    Altın Üyelik Hakkında Bilgi

3 adet CheckBox'u diğerlerinden Bağımsız işaretleme

Katılım
5 Ocak 2009
Mesajlar
1,586
Excel Vers. ve Dili
2003 Türkçe
selam,
aşağıdaki kodlar ile bir CheckBox seçildiği zaman diğer kalan 2 tanesi şeçili ise kaldırılsın istiyorum. Beceremedim bir türlü yardımcı olabilir misiniz?

İyi çalışmalar.
Kod:
Private Sub CheckBox1_Change()
CheckBox2 = False
CheckBox3 = False
End Sub

Private Sub CheckBox2_Change()
CheckBox1 = False
CheckBox3 = False
End Sub

Private Sub CheckBox3_Change()
CheckBox1 = False
CheckBox2 = False
End Sub
 
Selam,
aşağıdaki gibi çözümü buldum. Alternatif çözümler olursa yine beklerim.
İyi çalışmalar.

Private Sub CheckBox1_Change()

If CheckBox1 = True Then
CheckBox2 = False
CheckBox3 = False
End If

End Sub

Private Sub CheckBox2_Change()

If CheckBox2 = True Then
CheckBox1 = False
CheckBox3 = False
End If

End Sub

Private Sub CheckBox3_Change()

If CheckBox3 = True Then
CheckBox1 = False
CheckBox2 = False
End If

End Sub
 
Geri
Üst