TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
trond 0
NA
8
0
Displaying item in Combobox from checklistbox
Dec 13 2004 9:38 AM
I have a combobox that i populate with items from a checkedListBox. When the user is selecting an item in the checkedlistbox for the first time i want the combobox to show that item. As it is now it is just adding the selected item to the combobox: for (int y=0;y < checkedListBox1.CheckedItems.Count; y++) { cmbParameters.Items.Add(checkedListBox1.CheckedItems[y].ToString()); } Is there a way i can add some code so that the cmbParameters box is then set to that item as if the user selected it from the dropdown?
Reply
Answers (
1
)
What's the meaning of this.textBox2.MouseEnter += new System.EventHandler(this.textBox1_MouseEnter);
How to convert this into c#