prevent Datagridview column sorting

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • =?Utf-8?B?QW5kcmV3?=

    prevent Datagridview column sorting

    Hi all,

    How do I prevent the user from clicking on the column headers, thereby
    preventing the user from sorting the records in the datagridview ?
    Is there like a datagridview1.S ort = false :

    Thanks
    Andrew

  • Marc Gravell

    #2
    Re: prevent Datagridview column sorting

    For each column you can set SortMode to
    DataGridViewCol umnSortMode.Not Sortable

    Marc


    Comment

    • =?Utf-8?B?QW5kcmV3?=

      #3
      Re: prevent Datagridview column sorting

      Hi,
      Thanks for reply.
      Could you give an example on how to use it with some code ?

      Thanks
      Andrew

      "Marc Gravell" wrote:
      For each column you can set SortMode to
      DataGridViewCol umnSortMode.Not Sortable
      >
      Marc
      >
      >
      >

      Comment

      • =?Utf-8?B?QW5kcmV3?=

        #4
        Re: prevent Datagridview column sorting

        I've got it. Thanks.

        "Andrew" wrote:
        Hi,
        Thanks for reply.
        Could you give an example on how to use it with some code ?
        >
        Thanks
        Andrew
        >
        "Marc Gravell" wrote:
        >
        For each column you can set SortMode to
        DataGridViewCol umnSortMode.Not Sortable

        Marc

        Comment

        Working...