|
-
Aug 9th, 1999, 04:31 PM
#1
Thread Starter
Junior Member
Does anyone know how I can enable the DataGrid to allow mulitple record selection!
-
Aug 10th, 1999, 10:53 AM
#2
There is no way to select multiple rows.
I have tried very hard to do this. But
could not find any solution.
You may try using Flex Grid. It is an
excellent control.
-
Aug 10th, 1999, 12:47 PM
#3
Thread Starter
Junior Member
There problem with the flexgrid is that it is read only.
-
Aug 10th, 1999, 08:27 PM
#4
Hyperactive Member
Try Sheridan's Data Widgets 3.1....
http://www.shersoft.com
-
Aug 10th, 1999, 08:49 PM
#5
New Member
It is possible for the user to select multiple rows ( records).
The RecordSelectors property must be set to True, You can get the first and last columns selecte from the SelSTartCol and SelEndCol properties. This properties are part of the Split object! When the user selects multiple rows, then you can find out by checking the SelBookmarks collection in the datagrid.
The selchange event gets fired everytime there is a selection.
Something like this:
For each bookmark in datagrid.selbookmarks
Cost = cost + datagrid.columns("Cost").Cellvalue(bookmark)
Next
...
I hope this helps.
David
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|