Click here to Skip to main content
15,911,707 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hello

i wanted to store listbox items in to the table in mysql what is the query for that

replay me

regards

ginnas
Posted

 
Share this answer
 
Let's Say that i want to store the listBox1 items into DB

C#
foreach (var item in listBox1.Items)
            {
                //replace this line with your insert code
                MessageBox.Show(item.ToString());
            }



A.Mandour,
 
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