Registriert seit: 17. Sep 2006
Ort: Barchfeld
27.631 Beiträge
Delphi 12 Athens
|
AW: Delphi 7, Int64 und Ini.ReadInteger
6. Apr 2015, 11:41
Oder mit der erwähnten Ableitung:
Delphi-Quellcode:
type
TIniFile = class(IniFiles.TIniFile)
public
procedure WriteInt64(const Section, Ident: string; Value: int64);
function ReadInt64(const Section, Ident: string; DefaultValue: int64): int64;
end;
{ TIniFile }
function TIniFile.ReadInt64(const Section, Ident: string;
DefaultValue: int64): int64;
var
HexString: string;
begin
HexString := ReadString(Section, Ident, '');
Result := StrToIntDef(HexString, DefaultValue);
end;
procedure TIniFile.WriteInt64(const Section, Ident: string; Value: int64);
var
HexString: string;
begin
HexString := '$' + IntToHex(Value, 16);
WriteString(Section, Ident, HexString);
end;
Detlef "Ich habe Angst vor dem Tag, an dem die Technologie unsere menschlichen Interaktionen übertrumpft. Die Welt wird eine Generation von Idioten bekommen." (Albert Einstein)
Dieser Tag ist längst gekommen
|
|
Zitat
|