What i want and its been a pain to understand on how to put information into a combobox then show up in a textbox, like an example, i have a txtName and txtComment and a cboProductName, when I type a name in txtName and add information in the txtComment it will populate the combobox, but when you select that name from the combobox it should show the information in the txtComment. Here is the code. Look at the bottom of the code on what i am trying to do.
Code:
txtComment.Text = cboProductName.SelectedValue.ToString();
Comment