Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
150
WinGrid not recognizing selected rows
posted

I am simply trying to capture a selected row with the following:

Dim SelectedRows

' Iterate through a collection of selected rows

For i = 0 To

      grdGMDList.Selected.Rows.Count - 1

Dim test As String = "yes"

SelectedRows = grdGMDList.Selected.Rows(i)

Next

However, the Selected.Rows.Count is ALWAYS 0. Much of your documentation refers to Row Selectors.

 Are there supposed to be Row Selectors on my grid? Because there aren't any. I've searched everywhere. I can't find how to display these Row Selectors. Is this why the Selected.Rows.Count is always 0?