5
5070707
Hi all!
I have a small form created with VS2005 (Visual Basic)
on that form i have 5 text boxes and 4 combo boxes.
(the 4 combo boxes are data bind to an sql 2000 DB)
i'v created a button and used an onclick snippet for sending email.
(it works )
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles EmailSubmitBTN.Click
Dim message As New MailMessage("xxx@xxx", "xxx@xxx",
"subject", "A new request has arrived")
Dim emailClient As New SmtpClient("xxx.xxx.xxx")
emailClient.Send(message)
End Sub
Now - the botton does work but i don't really know how to collect all
the data i'v placed in the text boxes and combo boxes to send it along
with the email msg.
so here i am, mumbling nervously to my self because i am no
programmer..
any help with be greatly appreciates.....(code smaples will be mostly
appreciates)
Thanks!
50.
I have a small form created with VS2005 (Visual Basic)
on that form i have 5 text boxes and 4 combo boxes.
(the 4 combo boxes are data bind to an sql 2000 DB)
i'v created a button and used an onclick snippet for sending email.
(it works )
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles EmailSubmitBTN.Click
Dim message As New MailMessage("xxx@xxx", "xxx@xxx",
"subject", "A new request has arrived")
Dim emailClient As New SmtpClient("xxx.xxx.xxx")
emailClient.Send(message)
End Sub
Now - the botton does work but i don't really know how to collect all
the data i'v placed in the text boxes and combo boxes to send it along
with the email msg.
so here i am, mumbling nervously to my self because i am no
programmer..
any help with be greatly appreciates.....(code smaples will be mostly
appreciates)
Thanks!
50.