ShellExecute(Handle, PChar('c:\aa.exe /a'), .....)相关连接:http://expert.csdn.net/expert/topic/817/817295.xml

解决方案 »

  1.   

    ShellExecute(Handle, PChar('c:\aa.exe /a'), .....)相关连接:http://expert.csdn.net/expert/topic/817/817295.xml
      

  2.   

    ShellExecute(Handle, PChar('c:\aa.exe /a'), .....)相关连接:http://expert.csdn.net/expert/topic/817/817295.xml
      

  3.   

    shellexecute (Handle,'open' ,'e:\hh.exe',0,0,SW_SHOWNORMAL );
      

  4.   

    还可用 executefile.不过要将C:\borland\Delphi6\Demos\Doc\Filmanex下的FmxUtils.pas编译成FmxUtils.duc放在C:\borland\Delphi6\lib下
      

  5.   

    因该使用WinExec,ShellExecute是用来运行系统中注册的程序的文件的。例如你双击DOC文件,系统就启动Word,实际上就是调用了ShellExecute,这行ShellExecute首先要读取系统的注册库,这需要消耗一定的时间,没有Winexec快,而且参数太多,使用起来也不方便!!!
      

  6.   

    用WinExec('文件全路径')用ShellExec()都可以实现的啦,呵呵