First id look for some particular thread which is similar to my app, but i stumble on an empty wall, here's what i want to do i have combo1 and combo2 , when the user select combo1 and choose a particular list on it " combo1" eg.
here is list in combo1 ----- Action
Suspence
Thriller
Drama
when the user select "Action"
combo 2 would display all the list in "Action" Movie
------Die Another Day
------Italian Job
------MI3
please see attached file thank you once again.
------------------------------------------
Private Sub Combo1_DropDown()
Combo1.Clear
Combo1.AddItem "Action"
Combo1.AddItem "Drama"
Combo1.AddItem "Comedy"
End Sub