ComboBox1
Code:
M16A4
AK47
M4 Carbine
G3
G36C
M14
MP44
ComboBox2
Code:
ACOG Scope
Red Dot Sight
Silencer
Grip
Rifle Gernades
Ok this is what I am trying to make. If AK47 is selected in combox1 then:

Code:
ComboBox1= AK47
Code:
Combox2 = ACOG Scope
Red Dot Sight
Silencer
Grip
so everything except the rifle gernades.
How do this?

Is it like:
Code:
If ComboBox1.Text = "AK47" Then
ComboBox2.Items = "ACOG Scope,Red Dot Sight,Silencer,Grip"
If so how would i do it?