PC Review


Reply
Thread Tools Rate Thread

How can I disable sorting in a DatagridView?

 
 
Bruno Neves Pires Silva
Guest
Posts: n/a
 
      10th Jul 2008
Hello, Programmers.

How can I disable sorting in a DatagridView?

Thanks in advance.
 
Reply With Quote
 
 
 
 
Bruno Neves Pires Silva
Guest
Posts: n/a
 
      10th Jul 2008
On 10 jul, 11:06, Bruno Neves Pires Silva <brunonpsi...@gmail.com>
wrote:
> Hello, Programmers.
>
> How can I disable sorting in a DatagridView?
>
> Thanks in advance.


I have found out:
by the property sortmode of each column.
Thanx.
 
Reply With Quote
 
Marc Gravell
Guest
Posts: n/a
 
      10th Jul 2008
On each column, set the SortMode to NotSortable or Programmatic; either via
the IDE, or via a simple loop:

foreach (DataGridViewColumn column in grid.Columns)
{
column.SortMode = DataGridViewColumnSortMode.NotSortable;
}

Marc


 
Reply With Quote
 
Ciaran O''Donnell
Guest
Posts: n/a
 
      10th Jul 2008
Hows this:

DataGridView gridView;
foreach (DataGridViewColumn column in gridView.Columns)
{
column.SortMode= DataGridViewColumnSortMode.NotSortable;
}

--
Ciaran O''Donnell
http://wannabedeveloper.spaces.live.com


"Bruno Neves Pires Silva" wrote:

> Hello, Programmers.
>
> How can I disable sorting in a DatagridView?
>
> Thanks in advance.
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
How can I disable sorting in a DatagridView? Bruno Neves Pires Silva Microsoft VB .NET 1 10th Jul 2008 03:15 PM
How to disable the DataGridView sorting? =?Utf-8?B?U2hhcm9u?= Microsoft C# .NET 1 24th May 2007 11:40 AM
DataGridView--after sorting Kevin S Gallagher Microsoft Dot NET Framework Forms 9 20th Mar 2007 03:21 PM
Disable Sorting In DataGridView joey.powell@topscene.com Microsoft C# .NET 3 27th Jul 2006 07:16 PM
DataGridView - disable sorting dbuchanan Microsoft Dot NET Framework Forms 1 26th Mar 2006 05:09 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 02:58 PM.