Topic: help me please

Hello to all friends
Two questions..
1- Has anyone used the solar date in this software? If the answer is yes. help me
2- How can I disable the ascending and descending sort in the table grid (double above the header).

Re: help me please

Hi,
Sorting in the tablegrid is disabled on a column by column basis

procedure Form1_TableGrid1_OnChange (Sender: string);
begin
    Form1.TableGrid1.Columns[0].Options := Form1.TableGrid1.Columns[0].Options - coCanSort; 
end;

Then repeat this code for all the columns that you want to disable sorting on.
Derek.