如何从VB.NET打开Outlook“新邮件”窗口

前端之家收集整理的这篇文章主要介绍了如何从VB.NET打开Outlook“新邮件”窗口前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个场景,用户可以从网格中选择(在本地文件夹上上传文件),当用户按“发送”时,应用程序应该打开Outlook“新邮件”窗口,选择文件作为附件(用户选择来自网格).

任何帮助将不胜感激.

如果您想要特别想要一个Outlook消息,并且您想要更多选项来发送内容(正文,附件,BCC等):
Dim Outl As Object
Outl = CreateObject("Outlook.Application")
If Outl IsNot Nothing Then
    Dim omsg As Object
    omsg = Outl.CreateItem(0) '=Outlook.OlItemType.olMailItem'
    'set message properties here...'
    omsg.Display(True) 'will display message to user
End If
原文链接:https://www.f2er.com/vb/255935.html

猜你在找的VB相关文章