can't find anything on early binding that is not VBA, kind of lost on this one. Code as follows.
Private Sub FabViewFeedBackToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles FabViewFeedBackToolStripMenuItem.Click
'send email to me via outlook
Dim Outl As Object
Outl = CreateObject("Outlook.Application")
If Outl IsNot Nothing Then
Dim omsg As Object
omsg = Outl.CreateItem(0)
omsg.To = "[email protected]"
omsg.subject = "FabView FeedBack"
omsg.Display(True) 'will display message to use
End If
End Sub
downloaded NuGet Microsoft Office outlook interop package
Instead of binding to Outlook (which can be unreliable), you could instead shell to default mail client as follows:
VB.NET:
C#: