Results 1 to 4 of 4

Thread: DataGrid control

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Jun 1999
    Posts
    308
    Hi, everybody.

    Does anybody know if it's possible to disallow to highlight the whole column when you click on column's header? Like a property of MSFlexGrid control AllowBigSelection=False.

    Thank you in advance.

  2. #2

    Thread Starter
    Hyperactive Member
    Join Date
    Jun 1999
    Posts
    308
    Come on, gurus.
    Is there a constans for a DataGrid, that I can pass to API to do that?

  3. #3
    Fanatic Member
    Join Date
    Mar 2000
    Location
    That posh bit of England known as Buckinghamshire
    Posts
    658

    Thumbs up Quick Fix

    you could try this. Not the best solution in the world, but it works.

    Code:
    Private Sub dgAllRecords_HeadClick(ByVal ColIndex As Integer)
        dgAllRecords.ClearSelCols
    End Sub
    Iain, thats with an i by the way!

  4. #4

    Thread Starter
    Hyperactive Member
    Join Date
    Jun 1999
    Posts
    308
    Thanks, Lain.

    Doesn't look so good, but does a job.
    Do you know about constans for DataGrid?

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