Is there a way to generate GUID v1 (time-based) in Delphi 5? I found this function...
unit ComObj;
function CreateClassID: string;
But I'm not sure if it generates a time-based GUID. Also I know about this...
SysUtils.CreateGUID(newGUID);
... which calls the Windows API CoCreateGUID
that produces the GUID version 4 (random).