Hi guys i need help im working on a order form
My probelm is Listbox1 shows the items and by clicking a Button item will be added to Listbox2 without erasing other items that i already added recently
I found a source code
The Problem of the code above is it only works if you manualy input items in listbox but when using databind you cant add the item to another listbox.
When i tried to add the items a different message goes to my listbox2
System.data.dat aRowView
My probelm is Listbox1 shows the items and by clicking a Button item will be added to Listbox2 without erasing other items that i already added recently
I found a source code
Code:
Dim lb As String = ListBox1.SelectedIndex Dim O As Object = ListBox1.Items(lb) ListBox2.Items.Add(O)
When i tried to add the items a different message goes to my listbox2
System.data.dat aRowView
Comment