不是,我就是想把OUTLOOK调出来!你知道怎么调吗?

解决方案 »

  1.   

    是不是想用这个啊?
    Shell "C:\Program Files\Outlook Express\msimn.exe"
      

  2.   

    'Send E_mail
    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
    Private Const SW_SHOW = 5Private Sub Label1_Click()
        ShellExecute hwnd, "open", "mailto:aaa@bb", vbNullString, vbNullString, SW_SHOW
    End Sub