Resetting combobox Selection

  • Thread starter Thread starter Stephan Kassanke
  • Start date Start date
S

Stephan Kassanke

Hi all,

I have a form in which users can select from a combobox. Once they selected
an entry, some operations are done and now I want to "reset" the combobox'
selection, no entry should be selected while the form stays open.

The I tried

Me.cboTyp.SetFocus
Me.cboTyp.SelLength = 0

which does not work and

Me.cboTyp.ListIndex = -1

which throws an error 7777. Any ideas how to accomplish this?

cheers,
Stephan
 
Back
Top