Click here to Skip to main content
15,890,512 members
Home / Discussions / C#
   

C#

 
GeneralRe: Calling a C++ function from c# Pin
Bo Hunter26-Aug-03 13:31
Bo Hunter26-Aug-03 13:31 
GeneralC# configurationfile Pin
User 53137826-Aug-03 6:30
User 53137826-Aug-03 6:30 
GeneralRe: C# configurationfile Pin
scadaguy26-Aug-03 8:32
scadaguy26-Aug-03 8:32 
GeneralRe: C# configurationfile Pin
User 53137826-Aug-03 8:43
User 53137826-Aug-03 8:43 
GeneralHiding close buttons, min and max in MDI CHild Pin
Ista26-Aug-03 4:41
Ista26-Aug-03 4:41 
GeneralRe: Hiding close buttons, min and max in MDI CHild Pin
Donald_a26-Aug-03 5:52
Donald_a26-Aug-03 5:52 
GeneralRe: Hiding close buttons, min and max in MDI CHild Pin
Ista26-Aug-03 6:44
Ista26-Aug-03 6:44 
GeneralThreadPool misbehaving Pin
TheFLC26-Aug-03 4:12
TheFLC26-Aug-03 4:12 
GeneralRe: ThreadPool misbehaving Pin
MeisterBiber26-Aug-03 6:45
MeisterBiber26-Aug-03 6:45 
GeneralRe: ThreadPool misbehaving Pin
Daniel Turini26-Aug-03 7:07
Daniel Turini26-Aug-03 7:07 
GeneralRe: ThreadPool misbehaving Pin
TheFLC26-Aug-03 7:13
TheFLC26-Aug-03 7:13 
QuestionHTML in C# ?? Pin
yyf26-Aug-03 3:13
yyf26-Aug-03 3:13 
GeneralEmail attachment on Outlook express Pin
Velichko Sarev26-Aug-03 3:02
Velichko Sarev26-Aug-03 3:02 
GeneralSilly bug in Left-to-Right Menu Pin
Hovik Melkomian26-Aug-03 2:29
Hovik Melkomian26-Aug-03 2:29 
GeneralHolding ArrayLists in an ArrayList Pin
amadeonMk25-Aug-03 22:45
amadeonMk25-Aug-03 22:45 
GeneralRe: Holding ArrayLists in an ArrayList Pin
A.Wegierski25-Aug-03 22:55
A.Wegierski25-Aug-03 22:55 
GeneralRe: Holding ArrayLists in an ArrayList Pin
amadeonMk26-Aug-03 0:43
amadeonMk26-Aug-03 0:43 
GeneralRe: Holding ArrayLists in an ArrayList Pin
Julian Bucknall [MSFT]26-Aug-03 5:50
Julian Bucknall [MSFT]26-Aug-03 5:50 
GeneralRe: Holding ArrayLists in an ArrayList Pin
A.Wegierski26-Aug-03 20:12
A.Wegierski26-Aug-03 20:12 
Question.NET security sample anyone? Pin
devvvy25-Aug-03 21:36
devvvy25-Aug-03 21:36 
GeneralI cann't send mail to the other server Pin
Velichko Sarev25-Aug-03 20:54
Velichko Sarev25-Aug-03 20:54 
I try to send mail to the oher server ,but I cann't send it.Every time when I try, I have this kind of exception: Could not access 'CDO.Message' object.
I am sure that I had installed and runing SMTP service and CDO.

MailMessage mailMessage = null;
MailAttachment mailAttachment = null;
//GetMessageInfo(mailMessage);
mailMessage = new MailMessage();
mailMessage.From = textBoxFrom.Text;
mailMessage.To = textBoxTo.Text;
mailMessage.Subject = textBoxSubject.Text;
mailMessage.Body = textBoxMessage.Text;


//GetMessageAttachment(mailAttachment,mailMessage);
if(textBoxAttachment.Text != "")
{
if(File.Exists(textBoxAttachment.Text))
{
mailAttachment = new MailAttachment(textBoxAttachment.Text, MailEncoding.Base64);
mailMessage.Attachments.Add(mailAttachment);
}
else
{
MessageBox.Show("The file do not exist");
}
}

SmtpMail.SmtpServer.Insert(0,"mail.yahoo.com");
SmtpMail.SmtpServer = "mail.yahoo.com";
mailMessage.BodyFormat = MailFormat.Text;
SmtpMail.Send(mailMessage);
MessageBox.Show("Done");
GeneralRe: I cann't send mail to the other server Pin
Corinna John28-Aug-03 1:28
Corinna John28-Aug-03 1:28 
GeneralFast graphics in C# Pin
Stephane David25-Aug-03 20:37
Stephane David25-Aug-03 20:37 
GeneralRe: Fast graphics in C# Pin
Meysam Mahfouzi25-Aug-03 23:35
Meysam Mahfouzi25-Aug-03 23:35 
GeneralRe: Fast graphics in C# Pin
Stephane David26-Aug-03 1:26
Stephane David26-Aug-03 1:26 

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.