How do you set the current row of a dataset?I want to bind a control to a field from the 5th row in a dataset.I fill the dataset, then I want to set the row to the 5th row and then dothe databinding.Dataset1.tblMyTable.CurrentIndex = 5 or something like that maybe?''Sets the value for a field using index number......Dataset1.tblMyTable(1).FieldName = strName''Iterates through rows of a dataset but does not set the rowexplicitly......For Each myRow In DataSet1.tblMyTable.RowsstrName = myRow("FieldName")Next 解决方案 这篇关于如何在数据集中设置当前行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 08-18 21:40