aspvbnetnerd
Programmer
I want to get the current selected row from a DataGrid.
I am using C1flexgrid from ComponentOne and I want to get the current row that is selected.
When I have found the SelectedIndex. I want check if a column has the value "ERROR"
How would I set the X variable to the current selected row
/George
I am using C1flexgrid from ComponentOne and I want to get the current row that is selected.
When I have found the SelectedIndex. I want check if a column has the value "ERROR"
How would I set the X variable to the current selected row
Code:
Dim X As Integer
If C1fgArkiv.Item(X, 10) = "ERROR" Then
Do Something
End If
/George