please help me to solve this problem,i want to insert data by checking the multiple entries in my form and retrieve the same data, the check box must checked the corresponding field retrieved.

Recommended Answers

All 2 Replies

When posting to Daniweb, try to be more specific with your question(s). Your post is very vague and doesn't really ask a question. If you have began coding and cannot get something specific to work, post (use CODE tags) the portion of code in question and indicate the error you are getting. If you have a specific question about something you haven't coded yet that you don't know how it's done (not the entire program) and you want to see an example, you can ask that too.

Cheers!

try this code to insert datas into the table using checkedlist box
for i=0 to checkedlistbox.items.count-1
if checkedlistbox.getitemchecked(i)=true then
str="insert into tablename values ()"

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.