Click here to Skip to main content
15,885,141 members
Home / Discussions / C#
   

C#

 
GeneralRe: Use windows authentication in client/server application Pin
Le Thanh Cong17-Apr-06 21:26
Le Thanh Cong17-Apr-06 21:26 
GeneralRe: Use windows authentication in client/server application Pin
Dave Kreskowiak18-Apr-06 2:23
mveDave Kreskowiak18-Apr-06 2:23 
QuestionReading character Pin
eric_tran16-Apr-06 18:20
eric_tran16-Apr-06 18:20 
Questionhow to set Password on Access database ? Pin
hdv21216-Apr-06 10:57
hdv21216-Apr-06 10:57 
GeneralRe: how to set Password on Access database ? Pin
Guffa16-Apr-06 12:10
Guffa16-Apr-06 12:10 
QuestionSending email Pin
ap_sa16-Apr-06 9:23
ap_sa16-Apr-06 9:23 
AnswerRe: Sending email Pin
louthy16-Apr-06 10:35
louthy16-Apr-06 10:35 
AnswerRe: Sending email Pin
MSNFans16-Apr-06 21:19
MSNFans16-Apr-06 21:19 
Hi ap_sa, I'm very pleasure to tell you. Now Please try it:

MailMessage mm = new MailMessage();
mm.From = "your mail address";
mm.To = "Other mail";
mm.Subject = "mail title";
mm.BodyFormat = MailFormat.Html;
mm.BodyEncoding = System.Text.Encoding.Default;
mm.Body = "Your mail text";

mm.Fields.Add("http://schemas.microsoft.com/cdo/smtpauthenticate","1");
mm.Fields.Add("http://schemas.microsoft.com/cdo/sendusername","yourname");
mm.Fields.Add("http://schemas.microsoft.com/cdo/sendpassword","yourpwd");

SmtpMail.SmtpServer = "smtp.abc.com";
SmtpMail.Send(mm);

OK! The End! Happy you daily!

Smile | :)

————————————————————————————————————
   The Opportunity Knows But Once!
QuestionAbout WMI on C# Pin
The_Rank16-Apr-06 6:59
The_Rank16-Apr-06 6:59 
AnswerRe: About WMI on C# Pin
Le Thanh Cong16-Apr-06 23:06
Le Thanh Cong16-Apr-06 23:06 
QuestionProblem with method signatures Pin
t4ure4n16-Apr-06 6:46
t4ure4n16-Apr-06 6:46 
AnswerRe: Problem with method signatures Pin
Judah Gabriel Himango16-Apr-06 11:21
sponsorJudah Gabriel Himango16-Apr-06 11:21 
AnswerRe: Problem with method signatures Pin
Michael Dunn16-Apr-06 12:01
sitebuilderMichael Dunn16-Apr-06 12:01 
QuestionRe: Problem with method signatures Pin
t4ure4n26-Apr-06 4:34
t4ure4n26-Apr-06 4:34 
QuestionEmbedding executable in my application Pin
zorro.tmh16-Apr-06 3:08
zorro.tmh16-Apr-06 3:08 
AnswerRe: Embedding executable in my application Pin
Judah Gabriel Himango16-Apr-06 6:01
sponsorJudah Gabriel Himango16-Apr-06 6:01 
GeneralRe: Embedding executable in my application Pin
zorro.tmh16-Apr-06 23:36
zorro.tmh16-Apr-06 23:36 
QuestionHow can I use the objects which I made by 3DMax into Open GL ??!! Pin
suroor45316-Apr-06 2:27
suroor45316-Apr-06 2:27 
AnswerRe: How can I use the objects which I made by 3DMax into Open GL ??!! Pin
Judah Gabriel Himango16-Apr-06 6:09
sponsorJudah Gabriel Himango16-Apr-06 6:09 
GeneralRe: How can I use the objects which I made by 3DMax into Open GL ??!! Pin
suroor45316-Apr-06 7:26
suroor45316-Apr-06 7:26 
GeneralRe: How can I use the objects which I made by 3DMax into Open GL ??!! Pin
Judah Gabriel Himango16-Apr-06 15:41
sponsorJudah Gabriel Himango16-Apr-06 15:41 
AnswerRe: How can I use the objects which I made by 3DMax into Open GL ??!! Pin
Judah Gabriel Himango16-Apr-06 6:25
sponsorJudah Gabriel Himango16-Apr-06 6:25 
QuestionList with ListChanged and ListChanging events - asking for code review and suggestions (long source code included) Pin
Patrick Klug16-Apr-06 2:20
Patrick Klug16-Apr-06 2:20 
AnswerRe: List with ListChanged and ListChanging events - asking for code review and suggestions (long source code included) Pin
Guffa16-Apr-06 3:45
Guffa16-Apr-06 3:45 
GeneralRe: List with ListChanged and ListChanging events - asking for code review and suggestions (long source code included) Pin
Patrick Klug16-Apr-06 6:10
Patrick Klug16-Apr-06 6:10 

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.