Hi,
I'm struggling with a ComboBox.
i've managed to introduce several items by default. But he problem comes when I want to introduce a new one and display it as it's being typed.
So Ideally I'd like to show by default one of the Inputs introduced automatically. But also allow to introduce a new item.
I've used the event of the ComboBox KeyPress and it partially works.
I'd appreciate any hint of who had done similar stuff?
Regards
macro attached.
To display adefault value for the compobox:
Private Sub UserForm_Initialize()
Me.ComboBox1.Value = "Please Select Material" ' This is the default
ComboBox1.AddItem "STAINLESS STEEL"
ComboBox1.AddItem "ALUMINIUM"
End Sub
...
To introduce a new input outside the list:
From the Properties area, change the ComboBox style to be ( 0- DropDownCombo) instead of 2- DropDownList
Apologize if any misunderstand.