Community Tip - When posting, your subject should be specific and summarize your question. Here are some additional tips on asking a great question. X
On the MCad15 version I used to use Combobox (Microsoft form component) linked to Excel to feed the control as database.
I have noticed that Prime 7 has its own Combobox with some limited input options and does not allow import MSforms as object.
Does anybody has any recommendation for this topic or it's something that could be included in new releases?
Thanks in advance
@DavidH2022 wrote: DMVNowOn the MCad15 version I used to use Combobox (Microsoft form component) linked to Excel to feed the control as database.
I have noticed that Prime 7 has its own Combobox with some limited input options and does not allow import MSforms as object.
Does anybody has any recommendation for this topic or it's something that could be included in new releases?
Thanks in advance
A combo box combines a text box with a list box to create a drop-down list. You can add a Form Control or an ActiveX Control combo box. If you want to create a combo box that enables the user to edit the text in the text box, consider using the ActiveX Combo Box.
I'd suggest using the Exit event rather than the change event. That way you make sure that user is done typing OR selecting something.
Private Sub ComboBox1_Exit(ByVal Cancel As MSForms.ReturnBoolean) 'Your code here End Sub