Click here to Skip to main content
15,915,508 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Features with LINQ and DLINQ please help ? Pin
ozzyrocsdbn17-Sep-07 22:29
ozzyrocsdbn17-Sep-07 22:29 
GeneralRe: Features with LINQ and DLINQ please help ? Pin
Dave Kreskowiak18-Sep-07 1:34
mveDave Kreskowiak18-Sep-07 1:34 
QuestionDeploying program question Pin
Cory Kimble17-Sep-07 7:03
Cory Kimble17-Sep-07 7:03 
AnswerRe: Deploying program question Pin
Dave Kreskowiak17-Sep-07 7:35
mveDave Kreskowiak17-Sep-07 7:35 
QuestionHow to Zip a folder Pin
Rupesh Kumar Swami17-Sep-07 5:31
Rupesh Kumar Swami17-Sep-07 5:31 
AnswerRe: How to Zip a folder Pin
Kschuler17-Sep-07 7:46
Kschuler17-Sep-07 7:46 
AnswerRe: How to Zip a folder Pin
Dave Kreskowiak17-Sep-07 7:48
mveDave Kreskowiak17-Sep-07 7:48 
AnswerRe: How to Zip a folder [modified] Pin
helelark12317-Sep-07 19:51
helelark12317-Sep-07 19:51 
GeneralRe: How to Zip a folder Pin
Dave Kreskowiak19-Sep-07 2:01
mveDave Kreskowiak19-Sep-07 2:01 
GeneralRe: How to Zip a folder Pin
helelark12324-Sep-07 4:48
helelark12324-Sep-07 4:48 
QuestionSpeed up a VB.net project Pin
dcode2517-Sep-07 5:14
dcode2517-Sep-07 5:14 
AnswerRe: Speed up a VB.net project Pin
DigiOz Multimedia17-Sep-07 5:39
DigiOz Multimedia17-Sep-07 5:39 
AnswerRe: Speed up a VB.net project Pin
JamesS[C1]18-Sep-07 1:35
JamesS[C1]18-Sep-07 1:35 
AnswerRe: share windows folder Pin
Dave Kreskowiak17-Sep-07 7:50
mveDave Kreskowiak17-Sep-07 7:50 
GeneralRe: share windows folder Pin
helelark12317-Sep-07 19:30
helelark12317-Sep-07 19:30 
QuestionMigration issue in VS 2005 Pin
vikram reddy pullimamidi17-Sep-07 0:14
vikram reddy pullimamidi17-Sep-07 0:14 
AnswerRe: Migration issue in VS 2005 Pin
Dave Kreskowiak17-Sep-07 7:52
mveDave Kreskowiak17-Sep-07 7:52 
QuestionAnchor problem in VS2003 Pin
samerh16-Sep-07 23:39
samerh16-Sep-07 23:39 
AnswerRe: Anchor problem in VS2003 Pin
Dave Kreskowiak17-Sep-07 7:57
mveDave Kreskowiak17-Sep-07 7:57 
QuestionMail Function in vb.net Pin
manuo516-Sep-07 22:52
manuo516-Sep-07 22:52 
AnswerRe: Mail Function in vb.net Pin
Tom Deketelaere16-Sep-07 23:39
professionalTom Deketelaere16-Sep-07 23:39 
this is a very simple way to do it (don't know if it will meet you expectations)

imports system.web.mail
...

Dim obj As SmtpMail ' Variable which will send the mail  
Dim Mailmsg As New MailMessage()
        obj.SmtpServer = "server:relay.skynet.be" 
        Mailmsg.To = "test@test.be" 'the email adress to send to
        Mailmsg.From = "\" & (sender) & "\ <" & (sendermail) & ">" '(sender) = the name to be displayed  || (sendermail) = a valid email adress from wich to send
        Mailmsg.BodyFormat = MailFormat.Text
        Mailmsg.Subject = "example"
        Mailmsg.Body = "example body"
        obj.Send(Mailmsg)


hope this helps



If my help was helpfull let me know, if not let me know why.

The only way we learn is by making mistaks.

GeneralRe: Mail Function in vb.net Pin
manuo516-Sep-07 23:51
manuo516-Sep-07 23:51 
GeneralRe: Mail Function in vb.net Pin
samerh17-Sep-07 0:00
samerh17-Sep-07 0:00 
GeneralRe: Mail Function in vb.net Pin
Tom Deketelaere17-Sep-07 0:03
professionalTom Deketelaere17-Sep-07 0:03 
GeneralRe: Mail Function in vb.net Pin
manuo517-Sep-07 0:47
manuo517-Sep-07 0:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.