Hey, im just wondering if there was any easy were to make sure that an entry havent been used twice in a selection of ComboBoxes.
Heres the start for what id have to do if there isnt.
Private Sub ComboBox9_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ComboBox9.SelectedIndexChanged
If ComboBox9.Text = ComboBox1.Text Or ComboBox2.Text Or ComboBox3.Text Or ComboBox4.Text Or ComboBox5.Text Or ComboBox6.Text Or ComboBox7.Text Or ComboBox8.Text Then
MessageBox.Show("You have used this key twice, please go back and change one of these asignments.", "Key Assignment", MessageBoxButtons.OK, MessageBoxIcon.Error)
End If
End Sub