Changeset 53 for trunk/UCore.pas


Ignore:
Timestamp:
Dec 8, 2021, 2:02:17 PM (3 years ago)
Author:
chronos
Message:
  • Added: Allow to load from file or save to file individual selected contacts from the list.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/UCore.pas

    r52 r53  
    8282    ReopenLastFileOnStart: Boolean;
    8383    LastContactTabIndex: Integer;
     84    LastContactFileName: string;
    8485    ToolbarVisible: Boolean;
    8586    function GetProfileImage: TImage;
     
    431432    ReopenLastFileOnStart := ReadBoolWithDefault('ReopenLastFileOnStart', True);
    432433    LastContactTabIndex := ReadIntegerWithDefault('LastContactTabIndex', 0);
     434    LastContactFileName := ReadStringWithDefault('LastContactFileName', '');
    433435  finally
    434436    Free;
     
    453455    WriteBool('ReopenLastFileOnStart', ReopenLastFileOnStart);
    454456    WriteInteger('LastContactTabIndex', LastContactTabIndex);
     457    WriteString('LastContactFileName', LastContactFileName);
    455458  finally
    456459    Free;
Note: See TracChangeset for help on using the changeset viewer.