winexec
or shellexcuteex
or start

解决方案 »

  1.   

    两个方法:
    1、用shell()语句,但功能比较单一
    2、用API函数ShellExecute,但用起来稍麻烦一些!
      

  2.   

    shell
    shellexecute
    重复了
      

  3.   

    shell(path)
    假设你的应用程序的路径是c:\word.exe,那么
    shell("c:\word.exe")
    具体的看MSDN了,很好用的哟!
      

  4.   

    shellexecute好但有些麻烦,是api函数,shell简单但不好控制
      

  5.   

    SHELL不错呀,你控制起来也还可以,
    你可以得到你SHELL的应用程序的PID,控制起来就很方便了
      

  6.   

    Private Sub Command1_Click()
    Shell "c:\windows\winmine.exe", vbNormalFocus
    End SubPrivate Sub Command2_Click()
    Shell "C:\Program Files\Microsoft Office\Office\winword.exe", vbNormalFocusEnd SubPrivate Sub Command3_Click()
    Shell "C:\Program Files\Internet Explorer\iexplore.exe", vbNormalFocus
    End Sub
      

  7.   

    faint 这么多高手都回答了还不给分?更待何时?:)注意调用路径问题,需要使用API函数,如GETSYSTEMDIRECTORY等