发的不是时候,没人理,只好自己结贴。

解决方案 »

  1.   

    我来替你up一下,因为我也不懂,想看看区别。
      

  2.   

    This function performs an action on a file. The file can be an executable file or a document.WINSHELLAPI BOOL WINAPI ShellExecuteEx(
    LPSHELLEXECUTEINFO lpExecInfo );lpExecInfo 
    Long pointer to a SHELLEXECUTEINFO structure that contains and receives information about the application being executed. Public Type SHELLEXECUTEINFO
            cbSize As Long
            fMask As Long
            hwnd As Long
            lpVerb As String
            lpFile As String
            lpParameters As String
            lpDirectory As String
            nShow As Long
            hInstApp As Long
            '  Optional fields
            lpIDList As Long
            lpClass As String
            hkeyClass As Long
            dwHotKey As Long
            hIcon As Long
            hProcess As Long
    End TypeReturn Value
    Nonzero indicates success. Zero indicates failure.