Click here to Skip to main content
15,885,985 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am using windows application form. In which contain datagridview with one column have multi selection.
Posted

CSS
in your form you can just drag and drop a button control


//Code under the Button
    {
            int r;
            dataGridView1.Rows.Add();
            dataGridView1[0, r].Value = "" + checkedListBox1.Text;
            dataGridView1[1, r].Value = "" + checkedListBox2.Text;
            dataGridView1[2, r].Value = "" + checkedListBox3.Text;
        r++;
        }

i hope this will work for you
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900