Zitat von
Spider:
Also so gehts schonmal nicht:
ShellExecute(Handle, nil, 'dcc32 D:\Programm-Starter\Starter.dpr', nil, nil, SW_SHOW);
Ganz klar. Zum einen mal müssen die Strings PChars sein. Und dann:
ShellExecute(Handle, nil, PChar('dcc32'), PChar('D:\Programm-Starter\Starter.dpr'), nil, SW_SHOW);
[/quote]