procedure TFrmMain.dxTLServersColumnSorting(Sender: TObject;
Column: TdxTreeListColumn; var Allow: Boolean);
begin
if (VarColumnUp) then begin
Column.Sorted := csDown;
VarColumnUp := False;
end
else begin
Column.Sorted := csUp;
VarColumnUp := True;
end;
end;
How can I fix this?
Thanks in advance!
I assume you're using a DevExpress component? If yes, you might want to try
asking your question on their newsgroups
http://www.devexpress.com/support/newsgroup.asp
"Skilled" <tra...@ieg.com.br> wrote in message
news:3e2f...@newsgroups.borland.com...