程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C >> C語言基礎知識 >> 如何單步執行外部程序

如何單步執行外部程序

編輯:C語言基礎知識

  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);
  
   }
 
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved