Click here to Skip to main content
15,881,455 members
Home / Discussions / C#
   

C#

 
Questionquestion about a WEIRD problem in sending mail using smtp client. Pin
Green Fuze9-Sep-06 14:44
Green Fuze9-Sep-06 14:44 
AnswerRe: question about a WEIRD problem in sending mail using smtp client. Pin
Nader Elshehabi9-Sep-06 17:30
Nader Elshehabi9-Sep-06 17:30 
GeneralRe: question about a WEIRD problem in sending mail using smtp client. Pin
Green Fuze9-Sep-06 21:57
Green Fuze9-Sep-06 21:57 
GeneralRe: question about a WEIRD problem in sending mail using smtp client. Pin
Nader Elshehabi10-Sep-06 0:10
Nader Elshehabi10-Sep-06 0:10 
GeneralRe: question about a WEIRD problem in sending mail using smtp client. Pin
Green Fuze10-Sep-06 0:17
Green Fuze10-Sep-06 0:17 
GeneralRe: question about a WEIRD problem in sending mail using smtp client. Pin
Nader Elshehabi10-Sep-06 0:50
Nader Elshehabi10-Sep-06 0:50 
GeneralRe: question about a WEIRD problem in sending mail using smtp client. Pin
Green Fuze10-Sep-06 1:43
Green Fuze10-Sep-06 1:43 
JokeRe: question about a WEIRD problem in sending mail using smtp client. Pin
Nader Elshehabi10-Sep-06 2:28
Nader Elshehabi10-Sep-06 2:28 
Hello

D'Oh! | :doh: Great!! It's one of those problems that you have to think more stupid than your computer to figure out what's wrong!! I'm glad you made it though.

Anyway, if you want to get the ExitCode of your process:
int TimeOut = 60000; //TimeOut in milliseconds.
Process MySender = new Process()
//Initialize sender
MySender.Start();
if(MySender.WaitForExit(TimeOut))
{
    //Check MySender.ExitCode
}
else
{
    //The process has timedout
}


I hope it works this time -though I don't like this console idea!!-.

RegardsRose | [Rose]

GeneralRe: question about a WEIRD problem in sending mail using smtp client. Pin
Green Fuze10-Sep-06 2:33
Green Fuze10-Sep-06 2:33 
GeneralRe: question about a WEIRD problem in sending mail using smtp client. Pin
Nader Elshehabi10-Sep-06 2:48
Nader Elshehabi10-Sep-06 2:48 
GeneralRe: question about a WEIRD problem in sending mail using smtp client. Pin
Arjun "Mjolnir" Bahree10-Sep-06 3:16
Arjun "Mjolnir" Bahree10-Sep-06 3:16 
GeneralRe: question about a WEIRD problem in sending mail using smtp client. Pin
Green Fuze11-Sep-06 2:05
Green Fuze11-Sep-06 2:05 
GeneralRe: question about a WEIRD problem in sending mail using smtp client. Pin
Green Fuze11-Sep-06 2:03
Green Fuze11-Sep-06 2:03 
GeneralRe: question about a WEIRD problem in sending mail using smtp client. Pin
Green Fuze10-Sep-06 3:36
Green Fuze10-Sep-06 3:36 
AnswerRe: question about a WEIRD problem in sending mail using smtp client. Pin
Amar Chaudhary9-Sep-06 17:47
Amar Chaudhary9-Sep-06 17:47 
GeneralRe: question about a WEIRD problem in sending mail using smtp client. Pin
Green Fuze9-Sep-06 21:53
Green Fuze9-Sep-06 21:53 
Questionbrief question about sending a message to a control Pin
likefood9-Sep-06 9:29
likefood9-Sep-06 9:29 
AnswerRe: brief question about sending a message to a control Pin
Arjun "Mjolnir" Bahree9-Sep-06 9:48
Arjun "Mjolnir" Bahree9-Sep-06 9:48 
GeneralRe: brief question about sending a message to a control [modified] Pin
likefood9-Sep-06 10:07
likefood9-Sep-06 10:07 
GeneralRe: brief question about sending a message to a control Pin
Arjun "Mjolnir" Bahree9-Sep-06 10:27
Arjun "Mjolnir" Bahree9-Sep-06 10:27 
GeneralRe: brief question about sending a message to a control Pin
likefood9-Sep-06 10:26
likefood9-Sep-06 10:26 
GeneralRe: brief question about sending a message to a control Pin
Arjun "Mjolnir" Bahree9-Sep-06 10:33
Arjun "Mjolnir" Bahree9-Sep-06 10:33 
GeneralRe: brief question about sending a message to a control Pin
likefood9-Sep-06 12:10
likefood9-Sep-06 12:10 
GeneralRe: brief question about sending a message to a control Pin
Arjun "Mjolnir" Bahree10-Sep-06 3:10
Arjun "Mjolnir" Bahree10-Sep-06 3:10 
Questionis there a winform label control Pin
TheCardinal9-Sep-06 9:09
TheCardinal9-Sep-06 9:09 

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.