Click here to Skip to main content
15,914,222 members
Home / Discussions / C#
   

C#

 
AnswerRe: Please help. MessageBox.Show(this, "hello") pops up behind my mainform Pin
Martin#23-Oct-06 21:26
Martin#23-Oct-06 21:26 
GeneralRe: Please help. MessageBox.Show(this, "hello") pops up behind my mainform Pin
bradsnobar24-Oct-06 6:41
bradsnobar24-Oct-06 6:41 
AnswerRe: Please help. MessageBox.Show(this, "hello") pops up behind my mainform Pin
V.23-Oct-06 21:26
professionalV.23-Oct-06 21:26 
GeneralRe: Please help. MessageBox.Show(this, "hello") pops up behind my mainform Pin
bradsnobar24-Oct-06 6:42
bradsnobar24-Oct-06 6:42 
QuestionHow to invoke an event using reflection? Pin
Super Lloyd23-Oct-06 20:56
Super Lloyd23-Oct-06 20:56 
AnswerRe: How to invoke an event using reflection? Pin
Stefan Troschuetz23-Oct-06 21:27
Stefan Troschuetz23-Oct-06 21:27 
GeneralRe: How to invoke an event using reflection? Pin
Super Lloyd23-Oct-06 23:19
Super Lloyd23-Oct-06 23:19 
AnswerRe: How to invoke an event using reflection? Pin
Daniel Grunwald24-Oct-06 10:58
Daniel Grunwald24-Oct-06 10:58 
GeneralRe: How to invoke an event using reflection? Pin
Super Lloyd24-Oct-06 12:53
Super Lloyd24-Oct-06 12:53 
QuestionHow to parse generic numeric string Pin
kumar.bs23-Oct-06 19:35
kumar.bs23-Oct-06 19:35 
AnswerRe: How to parse generic numeric string Pin
Martin#23-Oct-06 19:59
Martin#23-Oct-06 19:59 
QuestionHow to Manage Registry Key Pin
Siamginsuan Ngaihte23-Oct-06 18:38
Siamginsuan Ngaihte23-Oct-06 18:38 
QuestionURGENT-----How to read default values of Registry Pin
HotGene23-Oct-06 17:33
HotGene23-Oct-06 17:33 
QuestionProper use of interfaces - Composite design pattern Pin
Goebel23-Oct-06 13:40
Goebel23-Oct-06 13:40 
AnswerRe: Proper use of interfaces - Composite design pattern Pin
Edbert P23-Oct-06 14:10
Edbert P23-Oct-06 14:10 
QuestionRe: Proper use of interfaces - Composite design pattern Pin
Goebel23-Oct-06 22:59
Goebel23-Oct-06 22:59 
AnswerRe: Proper use of interfaces - Composite design pattern Pin
Edbert P24-Oct-06 14:59
Edbert P24-Oct-06 14:59 
QuestionSendMail Pin
1010210623-Oct-06 13:27
1010210623-Oct-06 13:27 
MailMessage mailMsg = new MailMessage();
mailMsg .From = "from@fromServer.com";
mailMsg .To = "to@toServer.com";
mailMsg .Cc = "cc@ccServer.com"";
mailMsg .Bcc = "bcc@bccServer.com";
mailMsg .Subject = "SubjectOfTheMailString";
mailMsg .Body = "BodyOfTheMailString";
SmtpMail.Send(mailMsg );

How can we know the mail is sent successfully.
Can you show me more methods to know the mail is delivered right. Or we can keep track of process sending mail.

Thx

ngh

AnswerRe: SendMail Pin
grivix26-Oct-06 12:51
grivix26-Oct-06 12:51 
QuestionSet 'visible' property to 'false' for all the opened forms Pin
AngryC23-Oct-06 12:51
AngryC23-Oct-06 12:51 
AnswerRe: Set 'visible' property to 'false' for all the opened forms Pin
Stefan Troschuetz23-Oct-06 21:42
Stefan Troschuetz23-Oct-06 21:42 
GeneralRe: Set 'visible' property to 'false' for all the opened forms Pin
AngryC25-Oct-06 11:03
AngryC25-Oct-06 11:03 
GeneralRe: Set 'visible' property to 'false' for all the opened forms Pin
Stefan Troschuetz25-Oct-06 16:33
Stefan Troschuetz25-Oct-06 16:33 
AnswerRe: Set 'visible' property to 'false' for all the opened forms Pin
MGoettmann24-Oct-06 4:06
MGoettmann24-Oct-06 4:06 
GeneralRe: Set 'visible' property to 'false' for all the opened forms Pin
AngryC25-Oct-06 11:03
AngryC25-Oct-06 11:03 

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.