Visual Basic Code problem?
I need to make a drop down application in which you Type text into a text box, and have it put onto a combo box with the use of a command button. I don't know what the code will be for the command button to get the text into the combo. Care to help??
Comments
In general you create a form with the textbox, combo box, and a button. Double click on the button to jump to the button_click code. Put something in the function like combobox1.text=textbox1.text and it will update your combobox when you click.