Click here to Skip to main content
15,893,337 members
Home / Discussions / C#
   

C#

 
AnswerRe: urgently required.. pls reply... Pin
Henry Minute25-Mar-09 14:30
Henry Minute25-Mar-09 14:30 
AnswerRe: urgently required.. pls reply... Pin
King Julien25-Mar-09 19:33
King Julien25-Mar-09 19:33 
GeneralRe: urgently required.. pls reply... Pin
Nirmala VijayAseelan26-Mar-09 7:12
Nirmala VijayAseelan26-Mar-09 7:12 
GeneralRe: urgently required.. pls reply... Pin
King Julien26-Mar-09 19:29
King Julien26-Mar-09 19:29 
QuestionHow to declare/tie a mdigrandchild form to mdiGrandParent form? Pin
Lecutus125-Mar-09 7:04
Lecutus125-Mar-09 7:04 
AnswerRe: How to declare/tie a mdigrandchild form to mdiGrandParent form? Pin
Henry Minute25-Mar-09 11:24
Henry Minute25-Mar-09 11:24 
GeneralRe: How to declare/tie a mdigrandchild form to mdiGrandParent form? Pin
Lecutus126-Mar-09 7:53
Lecutus126-Mar-09 7:53 
GeneralRe: How to declare/tie a mdigrandchild form to mdiGrandParent form? Pin
Henry Minute26-Mar-09 9:07
Henry Minute26-Mar-09 9:07 
For the grandchild form to be contained inside the grandparent form it must be

grandchild.Mdiparent = MainIndiv_Truck_ControlMDI

otherwise it won't be contained.

You can put a form inside another, but you won't get the benefits of the MDI interface.
Like this:

Form grandchild = new grandchildForm();
grandchild.TopLevel = false;
grandchild.Parent = MainIndiv_Truck_ControlMDI;
grandchild.Visible = true;
grandchild.Location = new Point(10, 10);
grandchild.Size = new Size(100, 150);
grandchild.BackColor = Color.Bisque; // or whatever. this is just to make it stand out
MainIndiv_Truck_ControlMDI.Controls.Add(grandchild);


Henry Minute

Do not read medical books! You could die of a misprint. - Mark Twain
Girl: (staring) "Why do you need an icy cucumber?"
“I want to report a fraud. The government is lying to us all.”

QuestionLate Typed List Pin
Adriaan Davel25-Mar-09 7:02
Adriaan Davel25-Mar-09 7:02 
AnswerRe: Late Typed List Pin
Adam Maras25-Mar-09 7:08
Adam Maras25-Mar-09 7:08 
AnswerRe: Late Typed List Pin
Curtis Schlak.25-Mar-09 7:26
Curtis Schlak.25-Mar-09 7:26 
GeneralRe: Late Typed List Pin
Adriaan Davel25-Mar-09 20:01
Adriaan Davel25-Mar-09 20:01 
GeneralRe: Late Typed List Pin
Curtis Schlak.26-Mar-09 0:36
Curtis Schlak.26-Mar-09 0:36 
Questionobject constants in c# Pin
robertkjr3d25-Mar-09 6:05
robertkjr3d25-Mar-09 6:05 
AnswerRe: object constants in c# Pin
J$25-Mar-09 6:10
J$25-Mar-09 6:10 
GeneralRe: object constants in c# Pin
robertkjr3d25-Mar-09 7:18
robertkjr3d25-Mar-09 7:18 
GeneralRe: object constants in c# Pin
DaveyM6925-Mar-09 7:26
professionalDaveyM6925-Mar-09 7:26 
GeneralRe: object constants in c# Pin
Skymir25-Mar-09 7:40
Skymir25-Mar-09 7:40 
GeneralRe: object constants in c# Pin
robertkjr3d25-Mar-09 8:25
robertkjr3d25-Mar-09 8:25 
AnswerRe: object constants in c# Pin
Pete O'Hanlon25-Mar-09 6:11
mvePete O'Hanlon25-Mar-09 6:11 
GeneralRe: object constants in c# Pin
robertkjr3d25-Mar-09 7:30
robertkjr3d25-Mar-09 7:30 
GeneralRe: object constants in c# Pin
robertkjr3d25-Mar-09 8:26
robertkjr3d25-Mar-09 8:26 
QuestionHow to deploy c# project with vb6 project Pin
Pr@teek B@h!25-Mar-09 6:00
Pr@teek B@h!25-Mar-09 6:00 
Questionmarking shape on image Pin
aligokdemir25-Mar-09 5:56
aligokdemir25-Mar-09 5:56 
AnswerRe: marking shape on image Pin
jaypatel51225-Mar-09 6:50
jaypatel51225-Mar-09 6:50 

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.