Click here to Skip to main content
15,903,201 members
Home / Discussions / C#
   

C#

 
AnswerRe: Trail of Tears Part 2 (i.e. Control Locations)... Pin
M-Hall10-Mar-07 13:03
M-Hall10-Mar-07 13:03 
GeneralRe: Trail of Tears Part 2 (i.e. Control Locations)... Pin
Guffa10-Mar-07 13:33
Guffa10-Mar-07 13:33 
QuestionWallpaper Pin
CodeItWell10-Mar-07 11:04
CodeItWell10-Mar-07 11:04 
AnswerRe: Wallpaper Pin
Dawid Mazuruk10-Mar-07 23:36
Dawid Mazuruk10-Mar-07 23:36 
QuestionArray Pin
shamsteady10-Mar-07 9:23
shamsteady10-Mar-07 9:23 
AnswerRe: Array Pin
Travis D. Mathison10-Mar-07 9:59
Travis D. Mathison10-Mar-07 9:59 
GeneralRe: Array Pin
shamsteady10-Mar-07 10:02
shamsteady10-Mar-07 10:02 
GeneralRe: Array Pin
Christian Graus10-Mar-07 10:30
protectorChristian Graus10-Mar-07 10:30 
However, it's not really going to work. To do this, you need when you create each Panel, pass it into the forms Controls collection, and it's often easier just to create Panels and find them from the Controls collection.

foreach(Control c in Controls)
{
if (c is Panel)
{

}
// OR

Panel p = c as Panel;
if (p != null)
{
}
}

Christian Graus - Microsoft MVP - C++
Metal Musings - Rex and my new metal blog
"I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )

QuestionDifferences between strings Pin
tzuiop10-Mar-07 5:51
tzuiop10-Mar-07 5:51 
AnswerRe: Differences between strings Pin
Christian Graus10-Mar-07 5:57
protectorChristian Graus10-Mar-07 5:57 
AnswerRe: Differences between strings Pin
Phillip M. Hoff10-Mar-07 16:43
Phillip M. Hoff10-Mar-07 16:43 
Questionmove image through a path [modified] Pin
waleed9910-Mar-07 5:33
waleed9910-Mar-07 5:33 
AnswerRe: move image through a path Pin
Christian Graus10-Mar-07 5:43
protectorChristian Graus10-Mar-07 5:43 
GeneralRe: move image through a path Pin
waleed9910-Mar-07 21:13
waleed9910-Mar-07 21:13 
QuestionProblem with painting a form Pin
-raada-10-Mar-07 5:06
-raada-10-Mar-07 5:06 
AnswerRe: Problem with painting a form Pin
Christian Graus10-Mar-07 5:15
protectorChristian Graus10-Mar-07 5:15 
GeneralRe: Problem with painting a form Pin
-raada-10-Mar-07 7:49
-raada-10-Mar-07 7:49 
GeneralRe: Problem with painting a form Pin
Christian Graus10-Mar-07 8:10
protectorChristian Graus10-Mar-07 8:10 
AnswerRe: Problem with painting a form Pin
Luc Pattyn10-Mar-07 15:15
sitebuilderLuc Pattyn10-Mar-07 15:15 
GeneralRe: Problem with painting a form Pin
-raada-12-Mar-07 12:03
-raada-12-Mar-07 12:03 
GeneralRe: Problem with painting a form Pin
Luc Pattyn12-Mar-07 12:37
sitebuilderLuc Pattyn12-Mar-07 12:37 
QuestionError Pin
shamsteady10-Mar-07 4:43
shamsteady10-Mar-07 4:43 
AnswerRe: Error Pin
Christian Graus10-Mar-07 4:48
protectorChristian Graus10-Mar-07 4:48 
GeneralRe: Error Pin
shamsteady10-Mar-07 5:00
shamsteady10-Mar-07 5:00 
GeneralRe: Error Pin
Christian Graus10-Mar-07 5:16
protectorChristian Graus10-Mar-07 5:16 

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.