awesomebeats
Technical User
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
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