The text of this article is not in this database — only its details are. Read it on the old site: Make DropDown CheckedListBox in VB.net
8 Comments
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment.
The text of this article is not in this database — only its details are. Read it on the old site: Make DropDown CheckedListBox in VB.net
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment.
Steven VanAkenPosted Feb 25, 2021, 4:09 PM
Looks good, but, how can I populate this control with data? (chkListBox.DataSource)
Jens KlugePosted Dec 14, 2020, 10:56 AM
The item initialization should be fixed. Go into DropDownCheckedListBox.vb. Then change the property set method to the following to pass the value to the underlying listobx: Public Property Items() As String() Get Return dataList End Get Set(ByVal value As String()) dataList = value chkListBox.Items.Clear() chkListBox.Items.AddRange(value) End Set End Property
Samir TPosted May 28, 2020, 11:19 AM
Guys, I have used the attached application and it is working fine. the thing is there are 2 forms in this project. "Form1.vb" and "DropDownCheckedListBox.vb". You need to add your list in the combo box of second form "DropDownCheckedListBox.vb". form1 is loading this second form where you will be able to see your list and multi select is possible. Kudos to the developer.
Reddy AcpPosted Mar 20, 2018, 2:35 AM
I need this controlin c#.net
tan wcPosted Jul 30, 2017, 4:44 AM
Hi Sir, I copied your code and it able to run without syntax error. But the content of dropdownlistbox is blank no matter how I add them. I tried add with code or by properties, all failed. Please help
JPPosted Sep 19, 2013, 10:36 AM
Hello Hirendra, I downloaded the source code and my source code is compiling fine but it is not giving as expected. When I run the application, it shows blank in list box's items. Please check once again and give your comment. Thanks!
Srinivas ReddyPosted Feb 22, 2013, 11:53 PM
Hi Thanks for the control. How to set initial value(s) to this control. Thanks in advance YSReddy