---------------------------------------------------------------------------
| 1336 | |
| 1337 | //--------------------------------------------------------------------------- |
| 1338 | void __fastcall TMainF::M_File_Open_FolderClick(TObject *Sender) |
| 1339 | { |
| 1340 | if (!FolderOpenDialog1->Execute(Handle)) |
| 1341 | return; |
| 1342 | |
| 1343 | if (FolderOpenDialog1->FileName.Length != 0) { |
| 1344 | // First we clear the list |
| 1345 | if (M_Options_CloseAllAuto->Checked) |
| 1346 | M_File_Close_AllClick(Sender); |
| 1347 | |
| 1348 | I->Open(GUI_Text(FolderOpenDialog1->FileName)); |
| 1349 | Refresh(); |
| 1350 | } |
| 1351 | } |
| 1352 | |
| 1353 | //--------------------------------------------------------------------------- |
| 1354 | void __fastcall TMainF::M_File_Close_FileClick(TObject *Sender) |