Outlook
Hi,
This is what i have found so far, but it does no seem to register the
the parts marked in red.
Private Sub mnuDBEmail_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles mnuDBEmail.Click
Dim oOutlook As New Outlook.Application
Dim oMailitem As Outlook.MailItem
Dim oAttach As Outlook.Attachment
oMailitem = oOutlook.CreateItem(Outlook.OlItemType.olMailItem)
oMailitem.To = "johndoe@somewhere.com"
oMailitem.Subject = "My Subject"
Try
oMailitem.Attachments.Add("C:\TEST.TXT")
Catch ex As Exception
End Try
oMailitem.Send()
End Sub
Do i need to get ahold of a Addin, Dll or some type of file?
Will this work for all Outlook Clients (2K, 2003, etc)
Please help, i am almost done with my project, this is the last section.