Registriert seit: 10. Mai 2005
160 Beiträge
Delphi 7 Enterprise
|
Re: wie kann ich bestimmte (text) dateien öffnen
8. Aug 2005, 14:54
Ich würd das sowieso mit createprocess machen:
Delphi-Quellcode:
procedure exec(p: string {dateiname} );
var si:Tstartupinfo;
pi:tprocessinformation;
pn: string;
begin
pn:=' C:\WINNT\system32\notepad.exe';
createprocess( nil,
pchar(pn+' '+p),
nil,
nil,
false,
windows.NORMAL_PRIORITY_CLASS,
nil,
nil,
si,
pi);
end;
MfG NEW32!
|
|
Zitat
|