CreateProcess为什么没能运行程序? ( 积分: 0 )

  • 主题发起人 主题发起人 xiaodejun
  • 开始时间 开始时间
X

xiaodejun

Unregistered / Unconfirmed
GUEST, unregistred user!
我用下面的代码怎么TEMP.EXE程序未被运行呢?bCreateProcess := CreateProcess( 'temp.exe',nil,nil, nil, true, HIGH_PRIORITY_CLASS, nil, nil,<br> &nbsp; &nbsp; &nbsp; &nbsp; lpStartupInfo, lpProcessInformation);
 
我用下面的代码怎么TEMP.EXE程序未被运行呢?bCreateProcess := CreateProcess( 'temp.exe',nil,nil, nil, true, HIGH_PRIORITY_CLASS, nil, nil,<br> &nbsp; &nbsp; &nbsp; &nbsp; lpStartupInfo, lpProcessInformation);
 
1.必须先清空lpStartupInfo:<br>ZeorMemory(@lpStartupInfo, SizeOf(TStartupInfo));<br>2.必须设置<br>lpStartupInfo.cbSize := SizeOf(TStartupInfo);
 
接受答案了.
 
后退
顶部