Hi
kann jemand mir sagen, warum manch mal klappt und manch mal nicht ?
Delphi-Quellcode:
procedure TForm1.Timer1Timer(Sender: TObject);
begin
if not FileExists(ExtractFilePath(Application.ExeName)+'blabla.exe') then
begin
RenameFile('blabla.exe', 'haha.exe');
shellexecute(1,'open','"haha.exe"','','',SW_show);
end;
end;