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

C#

 
GeneralRe: Updating Text File Pin
vishal moharikar15-Jul-09 19:20
vishal moharikar15-Jul-09 19:20 
GeneralRe: Updating Text File Pin
musefan15-Jul-09 21:52
musefan15-Jul-09 21:52 
GeneralRe: Updating Text File Pin
vishal moharikar19-Jul-09 18:27
vishal moharikar19-Jul-09 18:27 
Questionhow to check Pin
Nath13-Jul-09 1:19
Nath13-Jul-09 1:19 
Hi folks,
some items in checkedlistbox for example the item will be like this (Kishore) kishore@gmail.com
i had a string kishore@gmail.com i have to compare this string with the item in checkedlistbox i have completed this but iam getting a error

"List that this enumerator is bound to has been modified. An enumerator can only be used if the list does not change."

Code:
if (checkedListBox_MailLst.Items.Count > 0)
foreach (string item in checkedListBox_MailLst.Items)
{
string mailItem=item;
checklistItem = mailItem.Split(' ');
foreach (string mailId in myMail)
{
if (checklistItem[2].ToString() == mailId)
if(checkedListBox_MailLst.Items.Contains
(mailItem))
{
int selectedItemIndex = checkedListBox_MailLst.Items.IndexOf(mailItem);
checkedListBox_MailLst.SetItemCheckState(selectedItemIndex, CheckState.Checked);
}
}
}
AnswerRe: how to check Pin
DaveyM6913-Jul-09 1:27
professionalDaveyM6913-Jul-09 1:27 
AnswerRe: how to check Pin
Nagy Vilmos13-Jul-09 1:29
professionalNagy Vilmos13-Jul-09 1:29 
Questioncreating services in C#.NET Pin
Sujay chakraborty13-Jul-09 0:41
Sujay chakraborty13-Jul-09 0:41 
AnswerRe: creating services in C#.NET Pin
stancrm13-Jul-09 0:48
stancrm13-Jul-09 0:48 
QuestionManaging another .exe from code Pin
Hum Dum13-Jul-09 0:32
Hum Dum13-Jul-09 0:32 
AnswerRe: Managing another .exe from code Pin
Mirko198013-Jul-09 0:39
Mirko198013-Jul-09 0:39 
GeneralRe: Managing another .exe from code Pin
Hum Dum13-Jul-09 1:05
Hum Dum13-Jul-09 1:05 
GeneralRe: Managing another .exe from code Pin
Mirko198013-Jul-09 2:41
Mirko198013-Jul-09 2:41 
AnswerRe: Managing another .exe from code Pin
Anindya Chatterjee13-Jul-09 3:40
Anindya Chatterjee13-Jul-09 3:40 
QuestionBorder Less Window Pin
satsumatable13-Jul-09 0:10
satsumatable13-Jul-09 0:10 
AnswerRe: Border Less Window Pin
Muhammad Mazhar13-Jul-09 0:33
Muhammad Mazhar13-Jul-09 0:33 
GeneralRe: Border Less Window Pin
satsumatable13-Jul-09 0:37
satsumatable13-Jul-09 0:37 
GeneralRe: Border Less Window Pin
DaveyM6913-Jul-09 1:18
professionalDaveyM6913-Jul-09 1:18 
QuestionI Am Sorry To Ask Again Pin
sanforjackass12-Jul-09 23:59
sanforjackass12-Jul-09 23:59 
AnswerRe: I Am Sorry To Ask Again Pin
J4amieC13-Jul-09 0:04
J4amieC13-Jul-09 0:04 
AnswerRe: I Am Sorry To Ask Again Pin
Vasudevan Deepak Kumar13-Jul-09 0:08
Vasudevan Deepak Kumar13-Jul-09 0:08 
GeneralRe: I Am Sorry To Ask Again Pin
mohit.monga8713-Jul-09 1:20
mohit.monga8713-Jul-09 1:20 
QuestionToolTip For Image Pin
rhtbhegade12-Jul-09 23:45
rhtbhegade12-Jul-09 23:45 
AnswerRe: ToolTip For Image Pin
Henry Minute12-Jul-09 23:50
Henry Minute12-Jul-09 23:50 
GeneralRe: ToolTip For Image Pin
rhtbhegade13-Jul-09 0:10
rhtbhegade13-Jul-09 0:10 
QuestionResource Pin
john563212-Jul-09 23:35
john563212-Jul-09 23:35 

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.