Ver Mensaje Individual
  #2  
Antiguo 10-03-2008
Avatar de cHackAll
[cHackAll] cHackAll is offline
Baneado?
 
Registrado: oct 2006
Posts: 2.159
Reputación: 20
cHackAll Va por buen camino
Código Delphi [-]
procedure TForm1.Button1Click(Sender: TObject);
var hFile: Cardinal; SystemTime: TSystemTime; CreationTime: TFileTime;
begin
 if not OpenDialog1.Execute then Exit;
 hFile := _lopen(PChar(OpenDialog1.FileName), OF_WRITE);
 DateTimeToSystemTime(StrToDateTime('10/05/1983 0:0:0'), SystemTime);
 SystemTimeToFileTime(SystemTime, CreationTime);
 SetFileTime(hFile, @CreationTime, nil, nil);
 CloseHandle(hFile);
end;
Responder Con Cita