---------------------------------------------------------------------------
| 336 | } |
| 337 | //--------------------------------------------------------------------------- |
| 338 | void __fastcall TSetupForm::DelFileButtonClick(TObject *Sender) |
| 339 | { |
| 340 | if( DrawGrid->RowCount < 2 ) |
| 341 | return; |
| 342 | int ARow = DrawGrid->Row - 1; |
| 343 | // Deleting default file "syslog" not allowed |
| 344 | if( ARow == 0 ) |
| 345 | return; |
| 346 | localSFL->Del(ARow); |
| 347 | DrawGrid->RowCount = 1 + localSFL->Count; |
| 348 | DrawGrid->OnClick(this); |
| 349 | } |
| 350 | //--------------------------------------------------------------------------- |
| 351 | void __fastcall TSetupForm::DrawGridClick(TObject *Sender) |
| 352 | { |