Get index of row
I am working with a windows application.
I load a dataset with dataadapter.Then I link this dataset to my controls(textboxes) in my form. Now I want to khow that what r开发者_开发技巧ow is display at each time. Thanks.
i think , you should refer to this artical
Binding
or Try below code
BindingSource bs = new BindingSource(new your data set ,"");
bs.Current will give you the current item in the your set.
精彩评论