Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to add a combobox as column in a listbox in VBA?

Using a VBA form, is it possible to add a Listbox control that has columns which contain Combo box controls? enter image description here

like image 903
Matthew Walk Avatar asked Dec 28 '15 19:12

Matthew Walk


1 Answers

No not possible with Standard VBA; Standard VBA will not allow this! You may be able to create a custom ActivX control or load another 3rd party control as suggested elsewhere but a standard ListBox cannot hold a ComboBox.

Other Workarounds may be usable if you can provide more details...

like image 52
PIT Avatar answered Oct 07 '22 14:10

PIT