VB 中用代码打开 Outlook 发Mail

前端之家收集整理的这篇文章主要介绍了VB 中用代码打开 Outlook 发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

Const SW_SHOWNORMAL = 1

Private Sub Form_Load()

'Send an E-Mail to the KPD-Team

ShellExecute Me.hwnd, vbNullString, "mailto:ygyuan@elong.com", VBNullString, "C:/", SW_SHOWNORMAL

End Sub

Call ShellExecute(Me.hwnd,"open",_ "mailto:omeName@Somewhere.com?subject=MySubject&Attach = ""c:/Mvp_form.doc"" ",_ vbNullString,vbNullString,SW_SHOW)

原文链接:https://www.f2er.com/vb/264335.html

猜你在找的VB相关文章