Registriert seit: 1. Feb 2018
3.691 Beiträge
Delphi 11 Alexandria
|
AW: Geolocation Windows API
25. Aug 2022, 16:51
Zitat:
IID = (4082257043, 58823, 23432, (190, 219, 211, 230, 55, 207, 242, 113)) gefragt, was als bekannte Hex(-String)
Wie kommst du von diesem Wert zu diesem Hex(-String)? Was wäre hier die einfachste Möglichkeit?
Vielleicht so?
Delphi-Quellcode:
function ToIID(A: Cardinal; B, C: Word; D, E, F, G, H, I, J, K: Byte): string;
begin
Result := '{' + IntToHex(A) + '-' + IntToHex(B) + '-' + IntToHex(C) + '-' +
IntToHex(D) + IntToHex(E) + '-' + IntToHex(F) + IntToHex(G) +
IntToHex(H) + IntToHex(I) + IntToHex(J) + IntToHex(K) + '}';
end;
var
s: string;
begin
s := ToIID(4082257043, 58823, 23432, 190, 219, 211, 230, 55, 207, 242, 113);
ShowMessage(s);
end;
Geändert von KodeZwerg (25. Aug 2022 um 17:01 Uhr)
|
|
Zitat
|