Can't you in the combo box specify items and use a click event for each item in the combo box?
Code:
Private Sub cmbBoxitem1 _Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles cmbBoxitem1.Click
Me.background = "filename.ext"
End Sub
Couldn't you do that for each item in the combo box?