Q. Selecting ComboBox items? How does one code it so when combo1.item(X) is selected (highlighted as combo1.text) that a function is called. I ask because using command buttons is tedious. A. As far as the combobox question: You can use a Case statement in Combo1_Click sub as follows: Private Sub Combo1_Click() Select Case Combo1.ListIndex Case 0 'Your code Case 1 'Your code End Select End Sub The ListIndex is one of many ways you could find the selected item. It works best on a set combobox that doesn`t change. (22-Aug-98 DBotkin voelker@erinet.com