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

C#

 
QuestionResource Dll Pin
Jeeva Jose19-Nov-07 19:57
Jeeva Jose19-Nov-07 19:57 
QuestionRemove Items from ListView Control C#.NET Pin
D i x y19-Nov-07 19:19
D i x y19-Nov-07 19:19 
AnswerRe: Remove Items from ListView Control C#.NET Pin
Nouman Bhatti19-Nov-07 20:04
Nouman Bhatti19-Nov-07 20:04 
AnswerRe: Remove Items from ListView Control C#.NET Pin
Anthony Mushrow19-Nov-07 20:41
professionalAnthony Mushrow19-Nov-07 20:41 
GeneralRe: Remove Items from ListView Control C#.NET Pin
dashingsidds10-May-10 1:33
dashingsidds10-May-10 1:33 
GeneralRe: Remove Items from ListView Control C#.NET Pin
Anthony Mushrow10-May-10 2:33
professionalAnthony Mushrow10-May-10 2:33 
GeneralRe: Remove Items from ListView Control C#.NET Pin
dashingsidds10-May-10 18:40
dashingsidds10-May-10 18:40 
QuestionReg: Repeating Mail id's in to Address while sending mails Pin
Satish - Developer19-Nov-07 19:13
Satish - Developer19-Nov-07 19:13 
HI, I am sending mails by getting mailid's from arraylist. but after sending a mail, when i open it the to-address is appending with next id's
the code is as follows. Can any one help for this? I tried CC also. but not use.
I used ASP mail componenet

MailSender objMailSender = new MailSender();
objMailSender.Host = "mail.domain.com";
objMailSender.Username = "uname";
objMailSender.Password = "pwd";
string strQueuePath = "C:\\Program Files\\Persits Software\\AspEmail\\Queue";
string Fromaddr = txtFromAddr.Text.ToString();

for (int i = start; i <= end; i++)
{
_mailId = "";
_mailId = Convert.ToString(Mailidary[i]);
if (_mailId != "")
{
objMailSender.AddAddress(_mailId, objMailSender);
objMailSender.From = Fromaddr;
objMailSender.FromName = "Techgene.net";
objMailSender.Subject = Convert.ToString(txtSubject.Text);
objMailSender.Body = Convert.ToString(txtBody.Text);
objMailSender.IsHTML = 1;
objMailSender.SendToQueue(strQueuePath);
}
}

For TEsting i took 10 mailid's(same) in to arraylist.
After getting mail, the to address look like this.........
To: satish.g@techgene.com; satish.g@techgene.com; satish.g@techgene.com;

G. Satish
AnswerRe: Reg: Repeating Mail id's in to Address while sending mails Pin
duncanmhor19-Nov-07 22:35
duncanmhor19-Nov-07 22:35 
QuestionSetting icons in upper left of dialogs Pin
Winkles19-Nov-07 19:06
Winkles19-Nov-07 19:06 
AnswerRe: Setting icons in upper left of dialogs Pin
Anthony Mushrow19-Nov-07 20:37
professionalAnthony Mushrow19-Nov-07 20:37 
AnswerRe: Setting icons in upper left of dialogs Pin
benjymous19-Nov-07 22:32
benjymous19-Nov-07 22:32 
Questionwhat is the different between override and overwrite Pin
Rajeshwar Code- Developer19-Nov-07 18:54
Rajeshwar Code- Developer19-Nov-07 18:54 
AnswerRe: what is the different between override and overwrite Pin
pmarfleet19-Nov-07 21:52
pmarfleet19-Nov-07 21:52 
GeneralRe: what is the different between override and overwrite Pin
Rajeshwar Code- Developer19-Nov-07 22:07
Rajeshwar Code- Developer19-Nov-07 22:07 
GeneralRe: what is the different between override and overwrite Pin
pmarfleet19-Nov-07 22:15
pmarfleet19-Nov-07 22:15 
AnswerRe: what is the different between override and overwrite Pin
N a v a n e e t h19-Nov-07 22:22
N a v a n e e t h19-Nov-07 22:22 
GeneralRe: what is the different between override and overwrite Pin
Rajeshwar Code- Developer19-Nov-07 22:34
Rajeshwar Code- Developer19-Nov-07 22:34 
GeneralRe: what is the different between override and overwrite Pin
N a v a n e e t h20-Nov-07 3:05
N a v a n e e t h20-Nov-07 3:05 
AnswerRe: what is the different between override and overwrite Pin
J4amieC19-Nov-07 22:23
J4amieC19-Nov-07 22:23 
GeneralRe: what is the different between override and overrides Pin
Rajeshwar Code- Developer19-Nov-07 22:30
Rajeshwar Code- Developer19-Nov-07 22:30 
GeneralRe: what is the different between override and overrides Pin
duncanmhor19-Nov-07 22:41
duncanmhor19-Nov-07 22:41 
GeneralRe: what is the different between override and overrides Pin
J4amieC19-Nov-07 23:53
J4amieC19-Nov-07 23:53 
QuestionBuilding an interactive grid Pin
gauzer19-Nov-07 18:31
gauzer19-Nov-07 18:31 
AnswerRe: Building an interactive grid Pin
BrianAshcroft19-Nov-07 21:25
BrianAshcroft19-Nov-07 21:25 

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.