hello,

I have a combobox and a label.
I don't know why this doesn't work:

VB Code:
  1. Private Sub cmbChoice_Change()
  2. If cmbChoice.ListIndex = 0 Then
  3.     Label1.Visible = False
  4. Else
  5.     Label1.Visible = True
  6. End If
  7. End Sub

what is the problem?

thanks