用vc做project,碰到问题,期待回答,谢谢

解决方案 »

  1.   

    本来加入了.exe后缀,而且用了lh,不行
    现在是用call e:\timer
    目前还没有什么问题
      

  2.   

    应该可以的 
    echo off
    **.exe
      

  3.   

    晕!
    a.bat
     
    @echo off
    if exist c:\yourexe.exe goto exec
    goto end:
    exec:
    C:\yourexe.exe
    end:
    echo on
      

  4.   

    如果要在yourexe.exe 退出前继续执行其后指令呢?
    @echo off
    if exist c:\yourexe.exe goto exec
    goto end:
    exec:
    C:\yourexe.exe
    echo *** next
    echo on在Cancle yourexe.exe以前作下一步,可能么?