Click here to Skip to main content
15,897,187 members
Home / Discussions / C#
   

C#

 
AnswerRe: changing system colors Pin
mark_w_19-Jul-07 5:24
mark_w_19-Jul-07 5:24 
GeneralRe: changing system colors Pin
Bekjong19-Jul-07 5:36
Bekjong19-Jul-07 5:36 
QuestionHow to remove the control? Pin
Dotnetkanna19-Jul-07 3:11
Dotnetkanna19-Jul-07 3:11 
AnswerRe: How to remove the control? Pin
Martin#19-Jul-07 3:19
Martin#19-Jul-07 3:19 
GeneralRe: How to remove the control? Pin
Luc Pattyn19-Jul-07 4:15
sitebuilderLuc Pattyn19-Jul-07 4:15 
GeneralRe: How to remove the control? Pin
Martin#19-Jul-07 4:17
Martin#19-Jul-07 4:17 
GeneralRe: How to remove the control? Pin
Luc Pattyn19-Jul-07 4:22
sitebuilderLuc Pattyn19-Jul-07 4:22 
GeneralRe: How to remove the control? Pin
Larantz19-Jul-07 11:55
Larantz19-Jul-07 11:55 
Hi Martin.
I don't have VS installed on this computer, so I haven't had the time to check, but doesn't adding and removing of elements in a collection that you're currently iterating over in a foreach, throw an exception?

Martin# wrote:
Hello,

You have to iterate over the Controls Collection and compare the Name property

foreach(Control c in this.Controls)
{
    if(c.Name.Equals("TextBox"+m.ToString()))
    {
        this.Controls.Remove(c);
        break;
    }
}


Best regards.
-Larantz-

for those about to code, we salute you
http://www.tellus-software.com

GeneralRe: How to remove the control? Pin
Martin#19-Jul-07 19:07
Martin#19-Jul-07 19:07 
GeneralRe: How to remove the control? Pin
Dotnetkanna19-Jul-07 19:47
Dotnetkanna19-Jul-07 19:47 
GeneralRe: How to remove the control? Pin
Martin#19-Jul-07 19:48
Martin#19-Jul-07 19:48 
Questionrating of images Pin
APHerman19-Jul-07 3:03
APHerman19-Jul-07 3:03 
QuestionRe: rating of images Pin
Eduard Keilholz19-Jul-07 3:16
Eduard Keilholz19-Jul-07 3:16 
AnswerRe: rating of images Pin
APHerman19-Jul-07 3:22
APHerman19-Jul-07 3:22 
GeneralRe: rating of images Pin
Larantz19-Jul-07 11:58
Larantz19-Jul-07 11:58 
GeneralRe: rating of images Pin
APHerman19-Jul-07 20:52
APHerman19-Jul-07 20:52 
QuestionData Table Pin
Blubbo19-Jul-07 2:56
Blubbo19-Jul-07 2:56 
AnswerRe: Data Table Pin
mrwisdom17-Dec-08 20:48
mrwisdom17-Dec-08 20:48 
Questiongridview with combo Pin
manoj_ce19-Jul-07 2:51
manoj_ce19-Jul-07 2:51 
AnswerRe: gridview with combo Pin
kubben19-Jul-07 4:22
kubben19-Jul-07 4:22 
AnswerRe: gridview with combo Pin
Blubbo19-Jul-07 4:39
Blubbo19-Jul-07 4:39 
Questionhelp me pleas Pin
Thaer Hamael19-Jul-07 2:26
Thaer Hamael19-Jul-07 2:26 
JokeRe: help me pleas Pin
Eduard Keilholz19-Jul-07 2:33
Eduard Keilholz19-Jul-07 2:33 
AnswerRe: help me pleas Pin
Not Active19-Jul-07 2:35
mentorNot Active19-Jul-07 2:35 
GeneralRe: help me pleas Pin
Eduard Keilholz19-Jul-07 2:38
Eduard Keilholz19-Jul-07 2:38 

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.