怎样用vb打开powerpoint文件,并不让它在状态栏中显示。

解决方案 »

  1.   

    打开powerpoint文件:
    用API函数ShellExecute,示例如下:Option Explicit
    Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
    Const SW_SHOWNORMAL = 1
    Private Sub Form_Load()
        ShellExecute Me.hwnd, "open", "123.ppt", vbNullString, App.Path, SW_SHOWNORMAL
    End Sub
      

  2.   

    引用,.visible=false或者楼上的SW_SHOWNORMAL改称SW_HIDE=0