开发者

Get index of row

开发者 https://www.devze.com 2023-01-28 17:18 出处:网络
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.

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.
0

精彩评论

暂无评论...
验证码 换一张
取 消