Click here to Skip to main content
15,921,660 members
Home / Discussions / C#
   

C#

 
AnswerRe: treeview Pin
Curtis Schlak.20-Nov-05 6:35
Curtis Schlak.20-Nov-05 6:35 
QuestionDataGrid & DataRelation Pin
RoyRose7819-Nov-05 20:10
RoyRose7819-Nov-05 20:10 
Questionstrongly typed collections over web services Pin
(Steven Hicks)n+119-Nov-05 18:37
(Steven Hicks)n+119-Nov-05 18:37 
QuestionREGEX Expressions Pin
Expert Coming19-Nov-05 17:09
Expert Coming19-Nov-05 17:09 
AnswerRe: REGEX Expressions Pin
User 665820-Nov-05 1:14
User 665820-Nov-05 1:14 
QuestionIs this reflection? Pin
eggie519-Nov-05 16:24
eggie519-Nov-05 16:24 
AnswerRe: Is this reflection? Pin
eggie519-Nov-05 16:56
eggie519-Nov-05 16:56 
AnswerRe: Is this reflection? Pin
Stanciu Vlad19-Nov-05 22:30
Stanciu Vlad19-Nov-05 22:30 
An easy way to itinerate trough your TextBoxes without reflection is to get each contol you have in the collection that has the TextBoxes an check if it's name is the one you desire :

public void CheckContols() {
    foreach(Control c in this.Controls) {  
         // assuming that this has a control collection named Controls
         if(c.Name.StartsWith("TextBoxAuthorName")) {
                // do your stuff with the control
         }
    }
}


Using reflection to do what you want is kind of like scratching your left ear with your right hand.

I hope you understand...because is a rough world out there...
GeneralRe: Is this reflection? Pin
User 665820-Nov-05 1:26
User 665820-Nov-05 1:26 
GeneralRe: Is this reflection? Pin
Stanciu Vlad20-Nov-05 4:50
Stanciu Vlad20-Nov-05 4:50 
GeneralRe: Is this reflection? Pin
eggie520-Nov-05 8:40
eggie520-Nov-05 8:40 
GeneralRe: Is this reflection? Pin
eggie520-Nov-05 8:53
eggie520-Nov-05 8:53 
GeneralRe: Is this reflection? Pin
Stanciu Vlad20-Nov-05 10:01
Stanciu Vlad20-Nov-05 10:01 
QuestionHelp with Delegates and Events Pin
tawammar19-Nov-05 11:37
tawammar19-Nov-05 11:37 
AnswerRe: Help with Delegates and Events Pin
mikanu19-Nov-05 21:09
mikanu19-Nov-05 21:09 
QuestionCustom Object Question Pin
LighthouseJ19-Nov-05 11:32
LighthouseJ19-Nov-05 11:32 
AnswerRe: Custom Object Question Pin
Chris Austin19-Nov-05 12:08
Chris Austin19-Nov-05 12:08 
GeneralRe: Custom Object Question Pin
LighthouseJ19-Nov-05 12:54
LighthouseJ19-Nov-05 12:54 
QuestionDefine Constant class for Const variable Pin
Yanshof19-Nov-05 8:56
Yanshof19-Nov-05 8:56 
AnswerRe: Define Constant class for Const variable Pin
Stanciu Vlad19-Nov-05 9:39
Stanciu Vlad19-Nov-05 9:39 
GeneralRe: Define Constant class for Const variable Pin
David Stone19-Nov-05 10:05
sitebuilderDavid Stone19-Nov-05 10:05 
GeneralRe: Define Constant class for Const variable Pin
Stanciu Vlad19-Nov-05 10:50
Stanciu Vlad19-Nov-05 10:50 
GeneralRe: Define Constant class for Const variable Pin
David Stone19-Nov-05 11:03
sitebuilderDavid Stone19-Nov-05 11:03 
GeneralRe: Define Constant class for Const variable Pin
Robert Rohde19-Nov-05 13:05
Robert Rohde19-Nov-05 13:05 
QuestionWhat Shockwave flash object needs to load flashes on an application with interaction between Csharp and Flash work well? Pin
3DoorsDown19-Nov-05 5:11
3DoorsDown19-Nov-05 5:11 

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.