Changeset 26 for Common/UCommon.pas
- Timestamp:
- May 25, 2010, 1:51:46 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Common/UCommon.pas
r20 r26 17 17 function CompareByteArray(Data1, Data2: TArrayOfByte): Boolean; 18 18 function GetUserName: string; 19 function SplitString(var Text: string; Count: Word): string; 19 20 20 21 implementation … … 126 127 end; 127 128 129 function SplitString(var Text: string; Count: Word): string; 130 begin 131 Result := Copy(Text, 1, Count); 132 Delete(Text, 1, Count); 133 end; 134 128 135 end.
Note:
See TracChangeset
for help on using the changeset viewer.