---------------------------------------------------------------------------
| 2042 | |
| 2043 | //--------------------------------------------------------------------------- |
| 2044 | void __fastcall TMainF::Page_System_Buttons_VideoClick(TObject *Sender) |
| 2045 | { |
| 2046 | Page_System_Sheet_ColumnToSort=0; |
| 2047 | Page_System_Sheet->Clear(); |
| 2048 | for (size_t count=0; count<Page_System_Video.size(); count++) |
| 2049 | { |
| 2050 | TListItem* Parent=Page_System_Sheet->Items->Add(); |
| 2051 | Parent->Caption=Page_System_Video(count, 0).c_str(); |
| 2052 | Parent->SubItems->Add(Page_System_Video(count, 1).c_str()); |
| 2053 | Parent->SubItems->Add(Page_System_Video(count, 2).c_str()); |
| 2054 | Parent->SubItems->Add(Page_System_Video(count, 3).c_str()); |
| 2055 | Parent->SubItems->Add(Page_System_Video(count, 4).c_str()); |
| 2056 | } |
| 2057 | } |
| 2058 | |
| 2059 | //--------------------------------------------------------------------------- |
| 2060 | void __fastcall TMainF::Page_System_Buttons_AudioClick(TObject *Sender) |