Registriert seit: 28. Feb 2007
Ort: Bottrop
265 Beiträge
Delphi 5 Enterprise
|
AW: Umwandlung 4byte Hex zu IEEE single
7. Dez 2010, 15:33
Nimm einen VariantenRecord :
Delphi-Quellcode:
Type
TByteToSingle = Record
Case Integer of
1 : (TheBytes : Array[0..3] of Byte);
2 : (TheSingle : Single);
end;
Var
MyRec : TByteToSingle;
Begin
MyRec.TheBytes[0] := Dein1.Byte;
MyRec.TheBytes[1] := Dein2.Byte;
...
Result := MyRec.TheSingle;
Glückauf
Geändert von guinnes ( 7. Dez 2010 um 15:35 Uhr)
|