Changeset 360 for Common/UCommon.pas
- Timestamp:
- May 7, 2012, 10:32:41 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Common/UCommon.pas
r358 r360 49 49 function SplitString(var Text: string; Count: Word): string; 50 50 function GetBit(Variable: QWord; Index: Byte): Boolean; 51 procedure SetBit(var Variable: QWord; Index: Byte; State: Boolean); 52 procedure SetBit(var Variable: Cardinal; Index: Byte; State: Boolean); 53 procedure SetBit(var Variable: Word; Index: Byte; State: Boolean); 51 procedure SetBit(var Variable: QWord; Index: Byte; State: Boolean); overload; 52 procedure SetBit(var Variable: Cardinal; Index: Byte; State: Boolean); overload; 53 procedure SetBit(var Variable: Word; Index: Byte; State: Boolean); overload; 54 54 function AddLeadingZeroes(const aNumber, Length : integer) : string; 55 55 function LastPos(const SubStr: String; const S: String): Integer; … … 413 413 procedure OpenFileInShell(FileName: string); 414 414 begin 415 ExecuteProgram('cmd.exe /c start ' + FileName);415 ExecuteProgram('cmd.exe /c start "' + FileName + '"'); 416 416 end; 417 417
Note:
See TracChangeset
for help on using the changeset viewer.