CheckedListBox unavailable in Smart Device project? Programming Software Development by fowmow CheckedListBox unavailable in Smart Device project? I'm fairly certain this … programming and don't understand why I cannot access the CheckedListBox control. I have the correct using statement (System.Windows.Forms… checkedlistbox Programming Software Development by havejeet Hi All, I have a checkedlistbox on my windows form. whatever Items user selects - I want … text is there as one of the items in the checkedlistbox) - if you have some fresh solution to this problem - please… CheckedListBox !!!! Programming Software Development by DATABASE Hi everybody :sad: need help plz how can i list items from a database into a CheckedListBox , using VB.Net and MS Access db ?? CheckedListBox Programming Software Development by Jennifer84 This for loop below sets 5 checkboxes in a checkedListBox. What I wonder is that when running the code below, … checkedListBox Programming Software Development by jduff8 … about a program we are writing. It consists of a checkedListBox that displays 3 makes of Car by Group and then… CheckedListBox MultiColumn Programming Software Development by Jennifer84 I wonder, I have a CheckedListBox and on the properties you can …I wonder is if it is true that CheckedListBox can have for example 5 columns because when …that any columns has been created in the CheckedListBox. I can find this member like below but…If I want to create 5 Columns in this CheckedListBox, is this possible ? [I](In the GridViewControl … checkedlistbox storing values in database Programming Software Development by AngelicOne I have checkedlistbox that is being populated at runtime by a dataset. Whenever … in author table that is on a form of a checkedlistbox in visual studio. [B]Visual Studio C#[/B] I have… a form for adding book that has a checkedlistbox which is being generated at runtime by a dataset which… Re: CheckedListBox MultiColumn Programming Software Development by mitrmkar Try taking a look at here [url]http://en.csharp-online.net/CheckedListBox[/url] to get an idea about what a multicolumn listbox is. Re: CheckedListBox MultiColumn Programming Software Development by Jennifer84 Thank you, Now I understand what a multicolumn listbox is. [QUOTE=mitrmkar;579472]Try taking a look at here [url]http://en.csharp-online.net/CheckedListBox[/url] to get an idea about what a multicolumn listbox is.[/QUOTE] Re: checkedlistbox and string Programming Software Development by ddanbe … split a comma separated list of strings. Now a [B]checkedListBox [/B]has an [B]Items [/B]collection. This collection has… an [B]Add [/B]method. So if you code [B]checkedListBox.Items.Add("my string");[/B] You will see… [B]my string [/B]as the first item in your checkedListBox if you run your program. If you still can not… checkedlistbox and string Programming Software Development by havejeet Hi all, I have two problems 1. I have a comma separated string values. I want to load them all into checkedlistbox as items.....HOW? 2. how do I get the itemindex of checkedlistbox, passing the text? regards and thanks Jeet Re: checkedlistbox and string Programming Software Development by havejeet … alarmed. CheckBoxList lives in the System.Web.UI.WebControls namespace. CheckedListBox lives in the System.Windows.Forms namespace. Had the same… I am still not sure how to do with the checkedlistbox of windows application in C#? regards Jeet checkedlistbox save checked items for future Programming Software Development by havejeet Hi friends, I have a checkedlistbox control on my windows form. Now when Application runs, every …. I want that - next time when user runs the application - checkedlistbox should be loaded with the same items checked. Meaning no… Re: checkedlistbox save checked items for future Programming Software Development by kvprajapati [QUOTE=havejeet;888001]Hi friends, I have a checkedlistbox control on my windows form. Now when Application runs, every …. I want that - next time when user runs the application - checkedlistbox should be loaded with the same items checked. Meaning no… checkedlistbox can't get multiple values Programming Software Development by AngelicOne … having a hard time to get the values of the checkedlistbox. Here it is. I will explain this. I have a…(); con.Close();[/CODE] It doesn't get the values for checkedlistbox. My code for Book_Author that is inside the foreach statement… CheckedListBox - Enable Button Programming Software Development by aristosv … with a button which is disabled by default, and a CheckedListBox with 68 items in it. What is the simplest way… of enabling the button, when an item in the CheckedListBox is selected or unselected? I’m looking for something like… Re: checkedlistbox and string Programming Software Development by ddanbe Make an empty WindowsApplication. Add a CheckedListBox via the toolbox. Add the following lines after InitializeComponent(); in … Re: checkedlistbox and string Programming Software Development by havejeet … for your reply - i checked first one and it seems checkedlistbox does nt have DataSource or DataBind() as members! Second - I… Re: checkedlistbox and string Programming Software Development by jbisono Uhmm, Are we talking about the same control? I think I misunderstood the question, you guys are talking about CheckedListBox and I am talking about CheckBoxList jeje, well anyway if there are different controls my post have no sense. Thanks. hope you solve your issue soon. Re: checkedlistbox and string Programming Software Development by ddanbe He, jbisono, don't get alarmed. CheckBoxList lives in the System.Web.UI.WebControls namespace. CheckedListBox lives in the System.Windows.Forms namespace. Had the same trouble once with the Timer class : there are a least two Timer classes in different namespaces. Re: checkedlistbox save checked items in sql (not concatenate) Programming Software Development by hyperion …://msdn.microsoft.com/en-us/library/system.windows.forms.checkedlistbox.aspx"]CheckedListBox Class[/URL] [CODE] for (int i=0; i<… Re: CheckedListBox - Enable Button Programming Software Development by aristosv … said, I already have my own 68 items in the CheckedListBox which I added through the designer. Also CheckOnClick was not… checkedlistbox save checked items in sql (not concatenate) Programming Software Development by AngelicOne … I only found out how to concatenate. I have a checkedlistbox that is a list of Authors, it is included in… Re: checkedlistbox save checked items in sql (not concatenate) Programming Software Development by AngelicOne Then what would I do inside the if statement? Could you give some sample? Sorry but i'm really new to this checkedlistbox Re: checkedlistbox save checked items in sql (not concatenate) Programming Software Development by hyperion … largely depends upon what all items were added to authorclb checkedlistbox. You might want to play around with authorclb properties to… Re: checkedlistbox Programming Software Development by ddanbe I think reading this will help : [url]http://www.codeproject.com/KB/miscctrl/SimplePersistentFormCS.aspx[/url] Re: checkedlistbox Programming Software Development by ddanbe Or try this: [url]http://msdn.microsoft.com/en-us/library/aa730869(VS.80).aspx[/url] Re: checkedlistbox Programming Software Development by Ramy Mahrous Danny, they can use flat file (CSV) to save user selected indices i.e 0,4,5,3 Then on form load he can read the file do these indices selected. Re: checkedlistbox Programming Software Development by ddanbe That's of course an option Ramy, but I have always been told not a very good one. If you loose the file, you loose your settings. Store settings inside the app as a resource and you don't have that problem. Re: checkedlistbox Programming Software Development by Ramy Mahrous That's can be done with .settings file! nothing guaranteed :) they can use database but I don't think it's proper use.