Hi everyone,
On a "Data Form" in a
VB.Net Windows app, I'm trying to implement a search function where by entering a string (PK, ID) in the respective textbox and pressing a button, I want to move within the Dataset and display the record where the ID is the entered number (when available).
No matter what I do, I seem to be confronted with the problem of "Item is Read Only".
Example (this does not work, it's just to illustrate what I'm trying to do):
Me.BindingContext(objds.Tables(0).Rows(0), "TheTable") = Me.BindingContext(objds.TheTable.Rows.Find(TheID))
Note that I don't want to use a WHERE clause in the select command, I just want to "move" within the Dataset and have all the records available.
Thanks in advance