QUOTE(zakary @ 21 May, 2008 - 07:25 AM)

double click on your dropdown box this will create a comboBox1_SelectedIndexChanged method so when ever the user select the dropdown box and selects an item you can store that value
csharp
string dropdownboxtext= string.Empty;
private void comboBox1_SelectedIndexChanged (object sender, EventArgs e)
{
dropdownboxtext= comboBox1.SelectedItem.ToString();
}
dropdownboxtextwill contain the value of the selected item in the drop down
I'm not following for some reason, I don't have a combo box control that I am using, I am using a TextBox control for my autocomplete.
I have created a custom auto complete source through a database loop. AutoSoureMode is set to SuggestAppend. Doesn't this mode of Suggest tell the textbox somehow to add that dropdown box with the suggested items. It is that magical dropdown box there that I am trying to access the events of. Does that make any sense? Sorry if I'm being vague here.
I appreciate the help.
-- Jordan