Excel crash when trying to Autocomplete an ActiveX ComboBox

I have an ActiveX Combobox control on a worksheet and this is the _Change event code

Private Sub ComboBox1_Change()
  Me.ComboBox1.ListFillRange = "ItemSearch"
  Me.ComboBox1.DropDown
End Sub

When I use keyboard up/down key to move through the list it automatically quits Excel.

Does anyone know the solution to this problem? I basically want a dynamic ComboBox.


You are forcing Combobox's possible values to update when you change the selected option,
that is why it's crashing.

You can try to keep Me.ComboBox1.DropDown in that event.

But the .ListFillRange should be in another event :

  • Workbook_Open
  • Workbook_SheetChange
  • Worksheet_SelectionChange
  • Worksheet_Change

  • If you're attempting to have a kind of AutoComplete behavior , you can use a built-in property :

  • Right-click on the Control, click on Properties
  • In the opened Properties window, find the MatchEntry property
  • Set it to 0 - fmMatchEntryFirstLetter
  • 链接地址: http://www.djcxy.com/p/38348.html

    上一篇: 取消的任务不会将控制权返回给异步块

    下一篇: 尝试自动完成ActiveX组合框时,Excel崩溃