Click here to Skip to main content
15,909,039 members
Home / Discussions / C#
   

C#

 
GeneralRe: iterate each list at most once Pin
PIEBALDconsult1-Nov-11 6:48
mvePIEBALDconsult1-Nov-11 6:48 
AnswerRe: Nested foreach is a bad practice?(please read) Pin
BillWoodruff30-Oct-11 18:43
professionalBillWoodruff30-Oct-11 18:43 
AnswerRe: Nested foreach is a bad practice?(please read) Pin
Luc Pattyn1-Nov-11 7:01
sitebuilderLuc Pattyn1-Nov-11 7:01 
GeneralRe: Nested foreach is a bad practice?(please read) Pin
Pete O'Hanlon1-Nov-11 8:08
mvePete O'Hanlon1-Nov-11 8:08 
QuestionHow set the background of an MDI container window? Pin
jojoba2029-Oct-11 1:17
jojoba2029-Oct-11 1:17 
AnswerRe: How set the background of an MDI container window? Pin
Philippe Mori29-Oct-11 3:16
Philippe Mori29-Oct-11 3:16 
AnswerRe: How set the background of an MDI container window? Pin
Dave Kreskowiak29-Oct-11 3:17
mveDave Kreskowiak29-Oct-11 3:17 
GeneralRe: How set the background of an MDI container window? Pin
BillWoodruff29-Oct-11 17:47
professionalBillWoodruff29-Oct-11 17:47 
+5 Right on target, Dave, and you reminded me of when ... several years ago ... I did some stuff with MDI (yuck), and I went back today, and took a look at the MdiClient component that is created when you set a Form's IsMdiContainer Property = true.

The WinForms designers, probably having a bad hair day, set the Text and Name properties of MdiClient to an empty string, which means you can't do something like this to find it:
C#
//
private MdiClient theMDIClientControl;
//
// note: don't need to recurse
Control[] potentialMDIClientControls = this.Controls.Find("MdiClient", false);
//
if (potentialMDIClientControls.Length > 0) theMDIClientControl = potentialMDIClientControls[0] as MdiClient;
So, as you said, you gotta iterate/enumerate over the Controls collection of the Form.
"Last year I went fishing with Salvador Dali. He was using a dotted
line. He caught every other fish." Steven Wright

GeneralRe: How set the background of an MDI container window? Pin
Dave Kreskowiak29-Oct-11 18:00
mveDave Kreskowiak29-Oct-11 18:00 
AnswerRe: How set the background of an MDI container window? Pin
BillWoodruff29-Oct-11 4:00
professionalBillWoodruff29-Oct-11 4:00 
AnswerRe: How set the background of an MDI container window? Pin
Alisaunder29-Oct-11 4:43
Alisaunder29-Oct-11 4:43 
AnswerRe: How set the background of an MDI container window? Pin
Luc Pattyn29-Oct-11 5:07
sitebuilderLuc Pattyn29-Oct-11 5:07 
GeneralRe: How set the background of an MDI container window? Pin
Dave Kreskowiak29-Oct-11 6:52
mveDave Kreskowiak29-Oct-11 6:52 
GeneralRe: How set the background of an MDI container window? Pin
Alisaunder29-Oct-11 10:52
Alisaunder29-Oct-11 10:52 
GeneralRe: How set the background of an MDI container window? Pin
Dave Kreskowiak29-Oct-11 14:24
mveDave Kreskowiak29-Oct-11 14:24 
GeneralRe: How set the background of an MDI container window? Pin
Alisaunder29-Oct-11 17:13
Alisaunder29-Oct-11 17:13 
GeneralRe: How set the background of an MDI container window? Pin
Dave Kreskowiak29-Oct-11 17:15
mveDave Kreskowiak29-Oct-11 17:15 
GeneralRe: How set the background of an MDI container window? Pin
Alisaunder29-Oct-11 17:16
Alisaunder29-Oct-11 17:16 
AnswerRe: How set the background of an MDI container window? Pin
Luc Pattyn29-Oct-11 17:48
sitebuilderLuc Pattyn29-Oct-11 17:48 
GeneralRe: How set the background of an MDI container window? Pin
Alisaunder29-Oct-11 17:52
Alisaunder29-Oct-11 17:52 
GeneralRe: How set the background of an MDI container window? Pin
Dave Kreskowiak29-Oct-11 17:55
mveDave Kreskowiak29-Oct-11 17:55 
GeneralRe: How set the background of an MDI container window? Pin
Alisaunder29-Oct-11 17:59
Alisaunder29-Oct-11 17:59 
GeneralRe: How set the background of an MDI container window? Pin
phil.o29-Oct-11 23:26
professionalphil.o29-Oct-11 23:26 
GeneralRe: How set the background of an MDI container window? Pin
Dave Kreskowiak30-Oct-11 3:24
mveDave Kreskowiak30-Oct-11 3:24 
GeneralRe: How set the background of an MDI container window? Pin
Dave Kreskowiak29-Oct-11 17:52
mveDave Kreskowiak29-Oct-11 17:52 

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.