Results 1 to 5 of 5

Thread: OLEDB DataGrid!

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Jan 1999
    Location
    Nottingham
    Posts
    20

    Post

    Does anyone know how I can enable the DataGrid to allow mulitple record selection!

  2. #2
    Guest

    Post

    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.

  3. #3

    Thread Starter
    Junior Member
    Join Date
    Jan 1999
    Location
    Nottingham
    Posts
    20

    Post

    There problem with the flexgrid is that it is read only.

  4. #4
    Hyperactive Member compuGEEK's Avatar
    Join Date
    May 1999
    Location
    Mpls,MN,USA
    Posts
    281

    Post

    Try Sheridan's Data Widgets 3.1....
    http://www.shersoft.com


  5. #5
    New Member
    Join Date
    Aug 1999
    Location
    Foxboro
    Posts
    4

    Post

    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
  •  



Click Here to Expand Forum to Full Width