---------------------------------------------------------------------------
| 2074 | |
| 2075 | //--------------------------------------------------------------------------- |
| 2076 | void __fastcall TMainF::Page_System_Buttons_TextClick(TObject *Sender) |
| 2077 | { |
| 2078 | Page_System_Sheet_ColumnToSort=0; |
| 2079 | Page_System_Sheet->Clear(); |
| 2080 | for (size_t count=0; count<Page_System_Text.size(); count++) |
| 2081 | { |
| 2082 | TListItem* Parent=Page_System_Sheet->Items->Add(); |
| 2083 | Parent->Caption=Page_System_Text(count, 0).c_str(); |
| 2084 | Parent->SubItems->Add(Page_System_Text(count, 1).c_str()); |
| 2085 | Parent->SubItems->Add(Page_System_Text(count, 2).c_str()); |
| 2086 | Parent->SubItems->Add(Page_System_Text(count, 3).c_str()); |
| 2087 | Parent->SubItems->Add(Page_System_Text(count, 4).c_str()); |
| 2088 | } |
| 2089 | } |
| 2090 | |
| 2091 | //--------------------------------------------------------------------------- |
| 2092 | void __fastcall TMainF::Page_System_SheetColumnClick(TObject *Sender, |