-
1 Attachment(s)
Grid
I use this code to filter all employees with the same position.
'Filter
DataSet11.Employee.DefaultView.RowFilter = "empposition='" & ComboBox1.Text & "'"
Dim dv As DataView
dv = DataSet11.Employee.DefaultView
DataGrid1.DataSource = dv
But when I use the code below to go to next record but it doesn't work!
'Move Next
Me.BindingContext(DataSet11, "Employee").Position += 1
Kindly help with this! Attached with this thread is the project that I'm doing. please check it first before answering this thread to understand it clearly.
thanks!!