全部博文(788)
分类:
2008-11-27 21:17:38
CreateProcess(pchar('d:\temp.exe'+'"'+'wo shi 111'+'" '+' fenqu'),nil,nil,nil,true,NORMAL_PRIORITY_CLASS,nil,pchar('d:\'), StartupInfo,ProcessInfo);
没测试过 不知道行不行~~~~
参数 lpApplicationName
类型及说明 String,要执行的应用程序的名字。可设为vbNullString;在这种情况下,应用程序的名字应在lpCommandLine参数的起始处出现
不行啊
CreateProcess(pchar('d:\temp.exe wo shi 111'+fenqu),nil,nil,nil,true,NORMAL_PRIORITY_CLASS,nil,pchar('d:\'), StartupInfo,ProcessInfo);
把第一和第二个参数互换就可以
还上不行啊,没有任何提示
可能你前面的代码就有错,我贴个例子你看看,找开记事本并装载1.txt文件
var
SI: TStartupInfo;
PI: TProcessInformation;
begin
FillChar(SI, SizeOf(SI), #0);
CreateProcess(nil,PChar('c:\windows\notepad.exe c:\1.txt'),nil,nil,True,
NORMAL_PRIORITY_CLASS,nil,nil,SI,PI);
end;
谢谢,呵呵,搞明白了
结贴