Click here to Skip to main content
15,886,963 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: program codes in vb - quiz with randomized questions Pin
Marcus J. Smith27-Feb-07 4:45
professionalMarcus J. Smith27-Feb-07 4:45 
GeneralRe: program codes in vb - quiz with randomized questions Pin
Colin Angus Mackay27-Feb-07 4:50
Colin Angus Mackay27-Feb-07 4:50 
GeneralRe: program codes in vb - quiz with randomized questions Pin
Dave Kreskowiak27-Feb-07 6:21
mveDave Kreskowiak27-Feb-07 6:21 
GeneralRe: program codes in vb - quiz with randomized questions Pin
Colin Angus Mackay27-Feb-07 6:50
Colin Angus Mackay27-Feb-07 6:50 
GeneralRe: program codes in vb - quiz with randomized questions Pin
Christian Graus27-Feb-07 9:26
protectorChristian Graus27-Feb-07 9:26 
GeneralRe: program codes in vb - quiz with randomized questions Pin
Dave Kreskowiak27-Feb-07 10:17
mveDave Kreskowiak27-Feb-07 10:17 
Questionemail sending using exchange server 2003 and VS 2005 Pin
steve_rm27-Feb-07 3:42
steve_rm27-Feb-07 3:42 
AnswerRe: email sending using exchange server 2003 and VS 2005 Pin
JustmeNick27-Feb-07 6:15
JustmeNick27-Feb-07 6:15 
first you need to import this mail class

Imports System.Web.Mail

Dim mail As New MailMessage

mail.To = anyone@someDomain
mail.From = user@yourDomain
mail.Subject = "message subject comes here"
mail.Body = "body of the message.. could be from a textbox"

SmtpMail.SmtpServer = "MailServerName" 'your real server name goes here
SmtpMail.Send(mail) ' this section is what sends the mail...

this is perfectly fine....i have use it..

the from email account..must exist on the exchange mail server account.. so if you have an account on that server.. use it for the from section or just create a temp account to be used for this purpose..

hope this helps..

Nab

QuestionRe: email sending using exchange server 2003 and VS 2005 Pin
steve_rm27-Feb-07 17:29
steve_rm27-Feb-07 17:29 
Questiondeleting a database Pin
balakpn27-Feb-07 3:19
balakpn27-Feb-07 3:19 
AnswerRe: deleting a database Pin
Marcus J. Smith27-Feb-07 3:22
professionalMarcus J. Smith27-Feb-07 3:22 
GeneralRe: deleting a database Pin
Colin Angus Mackay27-Feb-07 4:10
Colin Angus Mackay27-Feb-07 4:10 
GeneralRe: deleting a database Pin
Marcus J. Smith27-Feb-07 4:28
professionalMarcus J. Smith27-Feb-07 4:28 
GeneralRe: deleting a database Pin
Colin Angus Mackay27-Feb-07 4:49
Colin Angus Mackay27-Feb-07 4:49 
GeneralRe: deleting a database Pin
Marcus J. Smith27-Feb-07 5:07
professionalMarcus J. Smith27-Feb-07 5:07 
GeneralRe: deleting a database Pin
Colin Angus Mackay27-Feb-07 6:09
Colin Angus Mackay27-Feb-07 6:09 
AnswerRe: deleting a database Pin
Colin Angus Mackay27-Feb-07 4:11
Colin Angus Mackay27-Feb-07 4:11 
Questionslashes in textbox Pin
amaneet27-Feb-07 2:27
amaneet27-Feb-07 2:27 
AnswerRe: slashes in textbox Pin
Marcus J. Smith27-Feb-07 2:38
professionalMarcus J. Smith27-Feb-07 2:38 
AnswerRe: slashes in textbox Pin
KeithF27-Feb-07 2:57
KeithF27-Feb-07 2:57 
GeneralRe: slashes in textbox Pin
Marcus J. Smith27-Feb-07 3:16
professionalMarcus J. Smith27-Feb-07 3:16 
AnswerRe: slashes in textbox Pin
JustmeNick27-Feb-07 6:05
JustmeNick27-Feb-07 6:05 
GeneralRe: slashes in textbox Pin
Marcus J. Smith27-Feb-07 7:56
professionalMarcus J. Smith27-Feb-07 7:56 
GeneralRe: slashes in textbox Pin
JustmeNick27-Feb-07 8:15
JustmeNick27-Feb-07 8:15 
QuestionReferential classes Pin
amaneet27-Feb-07 2:17
amaneet27-Feb-07 2:17 

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.