- 中查找“如何单步执行外部程序”更多相关内容
- 中查找“如何单步执行外部程序”更多相关内容
- ·上一篇文章:在桌面上画图
- ·下一篇文章:创建位图型不规则窗体(可透明,可移动)
如何单步执行外部程序
for c++builder,用于vc应该把消息框改一下就可以了
void contour(void){
char ln[100];
int make;
char str[100]="";
char *tip="不能执行:";
sprintf(ln,"%s\%s",getcurrentdir(),"watson.exe");
char path[100];
sprintf(path,"%s",getcurrentdir());
chdir(path);
//showmessage(ln);
startupinfo startinfo;
process_information procinfo;
strcat(str,tip);
strcat(str, ln);
getstartupinfo(&startinfo);
startinfo.dwflags =startf_useshowwindow;
startinfo.wshowwindow=sw_hide ;
make=createprocess(null,ln,null,null,false,0,null,null,&startinfo,&procinfo);
if (!make)
{
messagebox(null, str, "提示", mb_ok);
}
waitforsingleobject(procinfo.hprocess, infinite);
}
Tags:
作者:佚名评论内容只代表网友观点,与本站立场无关!
评论摘要(共 0 条,得分 0 分,平均 0 分)
查看完整评论