Changeset 26 for Common/UCommon.pas


Ignore:
Timestamp:
May 25, 2010, 1:51:46 PM (14 years ago)
Author:
george
Message:
  • Přidáno: Knihovna VectorObject pro vykreslování vektorových objektů.
  • Přidáno: Knihovna PersistentForm pro uchování stavu oken v registrech.
  • Přidáno: LastOpenedList pro uchování naposledy otevřených souborů.
  • Upraveno: Aktualizace různých knihoven.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Common/UCommon.pas

    r20 r26  
    1717function CompareByteArray(Data1, Data2: TArrayOfByte): Boolean;
    1818function GetUserName: string;
     19function SplitString(var Text: string; Count: Word): string;
    1920
    2021implementation
     
    126127end;
    127128
     129function SplitString(var Text: string; Count: Word): string;
     130begin
     131  Result := Copy(Text, 1, Count);
     132  Delete(Text, 1, Count);
     133end;
     134
    128135end.
Note: See TracChangeset for help on using the changeset viewer.