Changeset 162 for trunk/Forms/FormExport.pas
- Timestamp:
- Jun 30, 2023, 10:01:24 PM (17 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/FormExport.pas
r161 r162 5 5 uses 6 6 Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls, ComCtrls, 7 Table, LazFileUtils ;7 Table, LazFileUtils, FormEx; 8 8 9 9 type … … 11 11 { TFormExport } 12 12 13 TFormExport = class(TForm )13 TFormExport = class(TFormEx) 14 14 ButtonBrowse: TButton; 15 15 ButtonCancel: TButton; … … 50 50 begin 51 51 SaveConfig; 52 Core.Core.PersistentForm1.Save(Self);53 52 end; 54 53 … … 80 79 TableFormat: TTableFormat; 81 80 begin 82 Core.Core.Translator.TranslateComponentRecursive(Self);83 Core.Core.ThemeManager1.UseTheme(Self);84 85 81 ComboBoxOutputFormat.Items.BeginUpdate; 86 82 try … … 106 102 procedure TFormExport.FormShow(Sender: TObject); 107 103 begin 108 Core.Core.PersistentForm1.Load(Self);109 110 104 PrepareTable; 111 105 Table.GetOutputListView(ListView1);
Note:
See TracChangeset
for help on using the changeset viewer.