Hi i have an application with some controls and a checked listbox filled with "products". What I need is how can I add the selected "products" in my db using VB.NET...
Thanks in advance for helping me
Hi i have an application with some controls and a checked listbox filled with "products". What I need is how can I add the selected "products" in my db using VB.NET...
Thanks in advance for helping me
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Bhim KunwarPosted Aug 31, 2008, 7:11 AM
i hope this code may help u to a great extent
Dim
Sno As New StringBuilder Dim drow As DataRowView Dim ListOfsno As New ArrayList For Each drow In chkLBVoucher.CheckedItemsSno.Append(drow(0))
Sno.Append(
",")ListOfsno.Add(drow(0))
Next If Sno.Length > 0 ThenSno.Remove(Sno.Length - 1, 1)
End Ifbest regards
Alex papaioannouPosted Mar 11, 2008, 2:03 PM
Blocked AccountPosted Mar 10, 2008, 12:58 AM