Hello everyone,
I need help,with my listbox. When I populate the listbox I use the code below
{
Listbox1.items.add(rdr[0].tostring + " " + rdr[1].tostring());
}
This creates two columns. Now I am trying to get my Textbox1.text to only equal the second value rdr[1] (the value in the second column of the listbox1)
Can any one kindly help me.