Click here to Skip to main content
15,893,668 members
Home / Discussions / Visual Basic
   

Visual Basic

 
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 
AnswerRe: retrieve data from database faster Pin
Tom Deketelaere16-Sep-07 23:29
professionalTom Deketelaere16-Sep-07 23:29 
QuestionConverting HTML(WEB Page URL/HTML) to JPG Images Pin
nhss16-Sep-07 21:08
nhss16-Sep-07 21:08 
QuestionCasting Pin
plural16-Sep-07 20:58
plural16-Sep-07 20:58 
AnswerRe: Casting Pin
Colin Angus Mackay17-Sep-07 2:44
Colin Angus Mackay17-Sep-07 2:44 
GeneralRe: Casting Pin
plural17-Sep-07 9:23
plural17-Sep-07 9:23 
QuestionType Casting Pin
Bad Programmer16-Sep-07 17:08
Bad Programmer16-Sep-07 17:08 
AnswerRe: Type Casting Pin
Bad Programmer16-Sep-07 17:20
Bad Programmer16-Sep-07 17:20 
GeneralRe: Type Casting Pin
helelark12316-Sep-07 20:24
helelark12316-Sep-07 20:24 
GeneralRe: Type Casting - Solution Pin
Bad Programmer23-Sep-07 19:03
Bad Programmer23-Sep-07 19:03 
GeneralRe: Type Casting - Solution Pin
helelark12324-Sep-07 4:46
helelark12324-Sep-07 4:46 
Questionsub report with dataset in .NET 2005 Pin
aphei16-Sep-07 17:05
aphei16-Sep-07 17:05 
QuestionDIRECTX audiovideoplayback Pin
plural16-Sep-07 9:16
plural16-Sep-07 9:16 
AnswerRe: DIRECTX audiovideoplayback Pin
Christian Graus16-Sep-07 9:39
protectorChristian Graus16-Sep-07 9:39 

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.