A
anotherdelphi
Unregistered / Unconfirmed
GUEST, unregistred user!
我之前也是差不多这样做的,而且能实现dbgrideh单击标题排序:
设置optioneh->autosortmarking->true;sortlocal->true;
然后在程序中编写代码: dbgrideh1.OptionsEh := dbgrideh1.OptionsEh + [dghAutoSortMarking];
for i:=0 to DBGridEh1.Columns.Count-1 do
begin
dbgrideh1.Columns.title.TitleButton:=true;
end;
结果,标题都出现了小三角形的符号,但是点击排序的时候却无反应!
我的数据库字段是varchar类型的,但我之前是能够排序的!比如是人名的话,是按拼音来排序的!
设置optioneh->autosortmarking->true;sortlocal->true;
然后在程序中编写代码: dbgrideh1.OptionsEh := dbgrideh1.OptionsEh + [dghAutoSortMarking];
for i:=0 to DBGridEh1.Columns.Count-1 do
begin
dbgrideh1.Columns.title.TitleButton:=true;
end;
结果,标题都出现了小三角形的符号,但是点击排序的时候却无反应!
我的数据库字段是varchar类型的,但我之前是能够排序的!比如是人名的话,是按拼音来排序的!