Quote Originally Posted by MattJoey View Post
And how would that work? I am thinking of doing another assignment in the future and will use the Combobox like this and I think I will use both.
Heres how you do it, just have the combo boxes directly over each other

Code:
Private Sub Provinces_Radio_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Provinces_Radio.CheckedChanged        Provinces_Combo.Visible = True
        Territories_Combo.Visible = False
    End Sub


    Private Sub Territories_Radio_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Territories_Radio.CheckedChanged
        Territories_Combo.Visible = True
        Provinces_Combo.Visible = False
    End Sub