Ich habe 3 CheckBoxen in meiner UserForm die abhängig von einander sind.
Wenn ich die UserForm starte ist ein graues Häckchen in allen 3 checkboxen zu sehen.
Wie kann man das abstellen
Vielen Dank für die Hilfe
Gruß Wolfgang
Private Sub CheckBox1_Click()
If CheckBox1 Then
CheckBox2.Value = False
CheckBox3.Value = False
End If
End Sub
Private Sub CheckBox2_Click()
If CheckBox2 Then
CheckBox1.Value = False
CheckBox3.Value = False
End If
End Sub
Private Sub CheckBox3_Click()
If CheckBox3 Then
CheckBox1.Value = False
CheckBox2.Value = False
End If
End Sub
Private Sub UserForm_Initialize()
CheckBox1.Value = False
CheckBox2.Value = False
CheckBox3.Value = False
End Sub
Private Sub CheckBox1_Click()
If CheckBox1 Then
CheckBox2.Value = False
CheckBox3.Value = False
End If
End Sub
Private Sub CheckBox2_Click()
If CheckBox2 Then
CheckBox1.Value = False
CheckBox3.Value = False
End If
End Sub
Private Sub CheckBox3_Click()
If CheckBox3 Then
CheckBox1.Value = False
CheckBox2.Value = False
End If
End Sub
Die erweiterte Suchfunktion hilft dir, gezielt die besten Antworten zu finden
Suche nach den besten AntwortenEntdecke unsere meistgeklickten Beiträge in der Google Suche
Top 100 Threads jetzt ansehen