The form opens with the text boxes show the values relating to the first
record (as expected):
FName= Abraham
LName= Bennet
What i cant understand however is why pressing the navigation buttons does
not change the text in these textboxes - after all they are bound to the
underlying dataset in the form load.
When putting a breakpoint in the button handlers i can verify that the
dataset is indeed moving on through the records by using
? BindingContext(ds, "Authors").Position
in the immediate window.
It clearly shows that the position is NOT on 0 (the first record) - however
only the fiorst record's details show in the textbox.
WHAT AM I DOING WRONG or MISSING??
PLEASE HELP ME SOMEBODY!
What is even more incredulous is that if i place a datagrid on the form and
then
bind it in the form load event handler with the statements
DataGrid1.DataSource = ds
DataGrid1.DataMember = "Authors"
then it is plain to see the navigation buttons working as the records move
from one record to the next in the datagrid.
HOWEVER - the textboxes are still blisffully stuck on the first record thru
all of this!
HELP pls!
thks
Suzie