我这个进程运行为什么没有反应?
ZeroMemory( &si, sizeof(si) );
si.cb = sizeof(si);
ZeroMemory( &pi, sizeof(pi) );
CreateProcess((LPCTSTR)"C:\Program Files\Internet Explorer\iexplore.exe",
(LPTSTR)"www.sina.com.cn",
NULL,
NULL,
FALSE,
0,
NULL,
NULL,
&si,
&pi);
是不是参数设置的问题,我对CreateProcess的参数实在糊涂。还有就是我程序是用的Unicode,和这个有关吗?