GCTIberica
Programmer
Does anyone know of a unique identifier that is an integer (not GUID) and is not system time?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
uses MACAddress;
procedure TForm1.Button1Click(Sender: TObject);
var
tma : tMacAddress;
begin
tma := getMacAddress( 0 );
edit1.Text := format( '%.2x-%.2x-%.2x-%.2x-%.2x-%.2x',
[ tma[0], tma[1], tma[2], tma[3],
tma[4], tma[5] ] );
end;
IPCONFIG /ALL