Ignore:
Timestamp:
Jul 13, 2016, 10:34:13 AM (8 years ago)
Author:
chronos
Message:
  • Added: Import format for MS Access database.
  • Added: Show text hints on toolbar buttons.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Forms/UFormImportFormat.pas

    r28 r31  
    2222    ButtonOk: TButton;
    2323    ButtonCancel: TButton;
     24    ComboBoxType: TComboBox;
    2425    EditBlockEnd: TEdit;
    2526    EditBlockStart: TEdit;
     
    2728    Label1: TLabel;
    2829    Label2: TLabel;
     30    Label3: TLabel;
    2931    Label8: TLabel;
    3032    Label9: TLabel;
     
    166168procedure TFormImportFormat.Load(ImportFormat: TImportFormat);
    167169begin
     170  ComboBoxType.ItemIndex := Integer(ImportFormat.Kind);
    168171  Self.ImportFormat := ImportFormat;
    169172  EditName.Text := ImportFormat.Name;
     
    175178procedure TFormImportFormat.Save(ImportFormat: TImportFormat);
    176179begin
     180  ImportFormat.Kind := TImportFormatKind(ComboBoxType.ItemIndex);
    177181  ImportFormat.Name := EditName.Text;
    178182  ImportFormat.Block.StartString := EditBlockStart.Text;
Note: See TracChangeset for help on using the changeset viewer.