Tagged Questions

0
votes
0answers
41 views

Remove icon from MDI child in MDI parent menustrip

In C# I have a MDI container and loads a MDI child. This child is maximized, which modifies my main menustrip with an icon and controls (maximize, minimize, close). Is there any …
0
votes
1answer
108 views

Remove a TabPage

I am using C# 2005 to create a Windows application. I have a MDIForm (frmMainMenu) which contains a Menustrip and a TabControl. My ChildForm is frmPurchaseEntry. When the user cl …
0
votes
2answers
57 views

New MDI child resizes other maximized Forms

I have a project with a main MDI form. There is a child MDI form inside that is always present and cannot be closed (Is it possible to hide the close button while keeping the min …
0
votes
0answers
32 views

C#How to know if a MDIChild is closed or opened in MdiChildActivate event

Hey Guys. Happy Haloween! I have a MDI Parent, with several chids, using dotnetbar component and Ribbon on the main form. I have a sidebar required for some of the MDI childrens, b …
1
vote
2answers
71 views

Maximizing child mdi in limited area

I have a form which is a mdicontainer and has a menu strip at the top. I add a child form to my mdi container and when I maximize the child it maximizes over the menustrip. I wan …
3
votes
1answer
123 views

Why does the last MDI child form that was closed not get garbage collected?

We've had problems with memory leaks in our application. I've managed to replicate one of the problems with the following simple example: Replication setup 1) Create the followi …
1
vote
1answer
172 views

Windows Forms - MdiClient scroll bars not automatically appearing as expected

I'm writing a windows forms application in C# whereby some windows utilities can be launched (e.g. CMD prompt, Registry editor, Events Viewer etc) and placed in an MdiClient contro …
2
votes
5answers
2k views

VB.Net MessageBox.Show() moves my form to the back

I have an MDI application. When I show a message box using MessageBox.Show(), the entire application disappears behind all of my open windows when I dismiss the message box. The c …
0
votes
0answers
49 views

How to remove an MDIChild from its parent?

The main goal is to make an MDIChild form, FULLSCREEN. I just want to make my form, free of its Parent and change WindowState and BorderStyle of it for a fullscreen view. Is ther …
1
vote
4answers
386 views

Winforms MDI “Desktop” Area Boundry

The default MDI parent control has a large "desktop" area that can display multiple child forms. Users can drag forms to the edge of this desktop area so that most of the child for …
0
votes
1answer
344 views

Create Tabbed MDI Interface

I am using C# 2005 to develop an Windows application. I am planning to use a Tab Container to display the child forms. I have used a Menu Strip to display the menu and have set IsM …
0
votes
2answers
201 views

MDI Child form calling, not generation.

Hello. I have an MDI form with 3 nested children with in it. As of right now all it can do is display a new form. For example: each time I press the menu button, the new child fo …
0
votes
2answers
474 views

Size/Location of Winforms MDI Client Area

Inside an MDI form is a client area that hosts the mdi child forms. How do I find out how big that area is? The best I can come up with so far is finding the total size of the pa …
1
vote
5answers
2k views

MDI child form problem in C#

When I maximize 1 MDI child form, all MDI child forms would be maximized too. Is it possible to have 1 form maximized and another one not? Thanks in advance.