Hello,
I've got several textboxes bound to a dataset. Everything works great the first time but then when I search for another record nothing changes. When I walk through the code the right value is passed into the sql statement, everything looks good, except the fact the new values don't get bound to the control.
I'm pretty sure this has something to do w/ clearing the bind but I'm not sure how to fix it.
Thanks in advance.

Databind textboxes
Alex Ivanoff
If so, you might want to clear the table they are bound to before repoplulating it.
Though you might be better off just getting all the needed records and navigating the rows after they are downloaded.
it's alot easier that way.
me.bindingcontext(dataset,"tableName").position +=1 (to go forward and -= 1 to go backwards, or use addnew to add a new row.
Joe
IanO