Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
How can i get the text entered in the editable portion of the combobox in C#?
The Text property :
Text
private void comboBox1\_TextChanged(object sender, EventArgs e) { ComboBox c = (ComboBox)sender; label1.Text = c.Text; }
------------------------------ "The Soapbox has been so ..."