Wozu steht bei ShellExecute ('C:\Windows\Explorer.exe') er macht das doch so auf wen es ein link ist oderrrrrrrrrrrrr????????
Delphi-Quellcode:
procedure MachMal(dateiname :
string);
var
S : TStringList;
i : integer;
begin
S := TStringList.Create;
S.LoadFromFile(dateiname);
for i := 0
to S.Count - 1
do
begin
ShellExecute(
Handle, PChar('
open'), PChar('
C:\Windows\Explorer.exe'), PChar(S.Items[i]), SW_SHOWNORMAL));
end;
end;