求助:如何用VC调用其他程序
我做了一个程序 就是调用ANSYS(有限元分析的软件)把一个文件.txt 导进 让ANSYS自动运行 生成一个模型
下面是我参考别人的代码,编的 可是老调用不了ANSYS!请各位高手指点!谢谢!
void CGEARDlg::OnButton1()
{
// TODO: Add your control notification handler code here
int result;
MessageBox("ANSYS STARTING");
STARTUPINFO si;
PROCESS_INFORMATION pi;
memset(&si,0,sizeof(si));
si.cb=sizeof(si);
si.dwFlags=STARTF_USESTDHANDLES;
si.wShowWindow=SW_SHOW;
::CreateProcess(NULL,"C:\Program Files\Ansys Inc\v100\ANSYS\bin\intel\ansys100.exe -b -p ane3fl -i F:\gear.txt -o F:\dd.out ",NULL,NULL,FALSE,0,NULL,NULL,&si,&pi);
}