Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Multiple Attachments

Status
Not open for further replies.

awesomebeats

Technical User
Nov 29, 2001
25
US
how do I program VB so i can have more than one attachment in my email? as of now here is what i have, this works for only one attachment.

Private Sub btnAttach_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnAttach.Click

Me.OpenFileDialog1.ShowDialog()
Me.txtAttachment.Text = Me.OpenFileDialog1.FileName
 
I don't have access to VS right now, but check the syntax for:

Me.txtAttachment.Add
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top