数据源为adoQuery

1、首先设置dbGridEh里需要排序的字段的Title->Titlebutton属性为true

2、设置dgGridEh的optionsEh->dbhautoSortMarking属性为true

3、在dbGridEh的ontitleButtonClick事件里面判断。

procedure Tfrmmain.dbgGridEh1TitlebtnClick(Sender: TObject; ACol: Integer;

Column: TColumnEh);

begin

if column.Title.SortMarker=smdowneh then

   adoQuery1.Sort :=column.FieldName

else

   adoQuery1.Sort :=column.FieldName +' DESC';

posted on 2008-11-15 13:46  漂流侠  阅读(338)  评论(0编辑  收藏  举报