1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
| Private Sub CommandButton1_Click()
UserForm_Initialize
End Sub
Private Sub UserForm_suite()
If ListBox1.List(ListBox1.ListIndex) = "TA 2" Then
ListBox2.AddItem "TA 260"
ListBox2.AddItem "TA 283"
ListBox2.AddItem "TA 287"
End If
If ListBox1.List(ListBox1.ListIndex) = "TA 3" Then
ListBox2.AddItem "TA 364"
ListBox2.AddItem "TA 370"
ListBox2.AddItem "TA 370 M"
ListBox2.AddItem "TA 373 H"
ListBox2.AddItem "TA 374 H"
ListBox2.AddItem "TA 378"
ListBox2.AddItem "TA 379"
ListBox2.AddItem "TA 381"
End If
If ListBox1.List(ListBox1.ListIndex) = "TA 4" Then
ListBox2.AddItem "TA 460"
End If
If ListBox1.List(ListBox1.ListIndex) = "VMW" Then
ListBox2.AddItem "TA 497"
End If
If ListBox1.List(ListBox1.ListIndex) = "TA L" Then
ListBox2.AddItem "TAL 460"
ListBox2.AddItem "TAL 488 H"
ListBox2.AddItem "TAL 498 H"
ListBox2.AddItem "TALT 489"
ListBox2.AddItem "TALT 8000"
ListBox2.AddItem "TALT 891"
End If
End Sub
Private Sub ListBox1_Click()
ListBox2.Clear
UserForm_suite
End Sub |