Sorry, I answer myself. I've found a way to do this...
PUBLIC SUB getSelectedRows()
DIM i AS Integer
DIM s AS String
FOR i = 0 TO gv.Rows.Count - 1
IF gv.Rows[i].Selected = TRUE THEN s &= i & ","
NEXT
PRINT s
END
Starting from here, it may be easy to get an s
I ask the same question, but with *gridview* (mode=multiple).
I'm able to select rows by code but, is there a way to retrieve the
selected rows?
Thanks!
Jesús
Joshua Higgins escribió:
> Hello,
>
> I'm using a columnview with the property Mode set to Multiple. What code do
> I need to let me co