Click here to Skip to main content
15,889,266 members
Home / Discussions / C#
   

C#

 
GeneralRe: Production release: Do I issue a "Release" build or do I simply not copy over the debug's pdb file? Pin
PIEBALDconsult17-May-10 9:24
mvePIEBALDconsult17-May-10 9:24 
GeneralRe: Production release: Do I issue a "Release" build or do I simply not copy over the debug's pdb file? Pin
Giorgi Dalakishvili17-May-10 9:29
mentorGiorgi Dalakishvili17-May-10 9:29 
AnswerRe: Production release: Do I issue a "Release" build or do I simply not copy over the debug's pdb file? Pin
The Man from U.N.C.L.E.17-May-10 4:07
The Man from U.N.C.L.E.17-May-10 4:07 
GeneralRe: Production release: Do I issue a "Release" build or do I simply not copy over the debug's pdb file? Pin
Alaric_17-May-10 4:48
professionalAlaric_17-May-10 4:48 
GeneralRe: Production release: Do I issue a "Release" build or do I simply not copy over the debug's pdb file? Pin
Alaric_17-May-10 4:55
professionalAlaric_17-May-10 4:55 
GeneralRe: Production release: Do I issue a "Release" build or do I simply not copy over the debug's pdb file? Pin
The Man from U.N.C.L.E.17-May-10 5:37
The Man from U.N.C.L.E.17-May-10 5:37 
GeneralRe: Production release: Do I issue a "Release" build or do I simply not copy over the debug's pdb file? Pin
The Man from U.N.C.L.E.17-May-10 5:30
The Man from U.N.C.L.E.17-May-10 5:30 
QuestionUsing Standalone SMTP email server Pin
msj4u17-May-10 3:31
msj4u17-May-10 3:31 
Hi,

I want to send the email from my standalone desktop application.

I searched for a stand alone email server but got only

http://www.ericdaugherty.com/dev/cses/

Actually I want to do some thing like

<br />
<br />
private void mailNow()<br />
        {<br />
            SimpleServer simpleServer = new SimpleServer(65535, null);<br />
            simpleServer.Start();<br />
           <br />
            System.Net.Mail.MailMessage message = new System.Net.Mail.MailMessage();<br />
            message.To.Add("zxc@abc.com");<br />
            message.From = new MailAddress(this.Text.ToString() + "@youmachine.com", this.Text.ToString());<br />
            message.Subject = "TEST MAIL from " + this.Text.ToString();<br />
            message.Body = "TEST MAIL FROM " + this.Text.ToString();<br />
            SmtpClient smtpClient = new SmtpClient("localhost", 65535);<br />
            smtpClient.Send(message);<br />
           <br />
            simpleServer.Stop();<br />
        }<br />


:? but my application hang at line

<br />
simpleServer.Start();<br />



anybody knows how to use that; actually I am new to C# have worked only on Sun Java
AnswerRe: Using Standalone SMTP email server Pin
Not Active17-May-10 3:43
mentorNot Active17-May-10 3:43 
GeneralRe: Using Standalone SMTP email server Pin
msj4u17-May-10 19:18
msj4u17-May-10 19:18 
AnswerRe: Using Standalone SMTP email server Pin
Dave Kreskowiak17-May-10 6:05
mveDave Kreskowiak17-May-10 6:05 
GeneralRe: Using Standalone SMTP email server Pin
msj4u17-May-10 19:14
msj4u17-May-10 19:14 
QuestionReportviewer Pin
Rajeshwar Code- Developer17-May-10 3:26
Rajeshwar Code- Developer17-May-10 3:26 
QuestionActiveX control Pin
NarVish17-May-10 0:52
NarVish17-May-10 0:52 
AnswerRe: ActiveX control Pin
Abhinav S17-May-10 1:41
Abhinav S17-May-10 1:41 
GeneralRe: ActiveX control Pin
NarVish17-May-10 1:45
NarVish17-May-10 1:45 
QuestionSave multiPageTiff to multiPageTiff Pin
nevzatagan16-May-10 23:08
nevzatagan16-May-10 23:08 
AnswerRe: Save multiPageTiff to multiPageTiff Pin
Peace ON16-May-10 23:55
Peace ON16-May-10 23:55 
QuestionVerification text file Pin
tek 200916-May-10 22:45
tek 200916-May-10 22:45 
AnswerRe: Verification text file Pin
TheyCallMeMrJames17-May-10 6:23
TheyCallMeMrJames17-May-10 6:23 
GeneralRe: Verification text file Pin
tek 200917-May-10 7:11
tek 200917-May-10 7:11 
GeneralRe: Verification text file Pin
TheyCallMeMrJames17-May-10 7:54
TheyCallMeMrJames17-May-10 7:54 
QuestionStarting C# App with service Pin
Wie_Funu16-May-10 22:36
Wie_Funu16-May-10 22:36 
AnswerRe: Starting C# App with service Pin
Calla16-May-10 23:01
Calla16-May-10 23:01 
GeneralRe: Starting C# App with service Pin
Wie_Funu17-May-10 0:36
Wie_Funu17-May-10 0:36 

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.