Questions tagged [mdiparent]

MDI stands for Multiple Document Interface. A MDIParent form can contain several MDIChild forms each of them doing indipendent things, but sharing the same parent container, menus and controls.

A MDIParent is an option to consider in developing an application displaying several documents at once, since it allows users to easily identify what belongs to an application and what is part of another.

220 questions
0
votes
1 answer

How remove mdiChild form shrink button?

I already disabled maximize and minimize buttons. Now i want to remove shrink button. How can i do that?
ardai
  • 33
  • 1
  • 7
0
votes
1 answer

mdiparent click

The click ,double click on mdi parent of the .net MDI form does not work is it a bug?
Thunder
  • 10,366
  • 25
  • 84
  • 114
0
votes
3 answers

Show top most Child Form c#

How can I show topmost a button clicked child form in my parent form (with a tabcontrol which docked as fill)? It always shows the form at the back of the tabcontrol of the parent form, I've even used: frm.TopMost = true; frm.BringToFront(); Still…
office puppy
  • 67
  • 2
  • 8
0
votes
2 answers

Setting a form as an MDI child of a main form?

I have a main form application which is an MDI container. A user can press a button to make a new form pop up (not as an MDI child), and then from this new form that popped up, I want to be able to have a button that creates a different form as an…
aNobody
  • 117
  • 1
  • 3
  • 5
0
votes
2 answers

How to render window form after completing any action

I am new in window application and I am not able to render another window form after saving data to database. here is my code I am opening the another window form GameList gamelist = new GameList();// the form which I want to…
Manish Kumar
  • 595
  • 2
  • 5
  • 20
0
votes
2 answers

Winforms c# Changing background Image of Parent form from popup form

I have two forms a & b. Form a is main form and on one of its button click event form b is shown as a small window. On the popup (form b), I have an option to select image. What I need to do is when I click on save button of popup (form b), form a…
Shayam
  • 27
  • 1
  • 6
0
votes
0 answers

Show MdiChild on top of all other MdiChildren

Does anyone know about Multiple Document Interfaces in C#? I'm having trouble with Form.Show(this) to keep one of the child forms perpetually on top of the rest. If the form already has an owner (set to MdiParent), then the program throws an…
0
votes
2 answers

How to close only child on click of a button in WPF

I have created MDI form using CodePlex DLL, I have added a WPF user control and opened it as a child with below code: MainMdiContainer.Children.Add(new MdiChild() { Title = " Employee Master", Height = 300, …
Nadeem Shaikh
  • 117
  • 14
0
votes
2 answers

VB.Net 3.5 MDI Application - MDIChild forms stop opening after N memory has been used

I hope someone may be able to help! We have a pretty large VB.Net MDI application that has been converted from VB6. When it is first run up with no MDIChild forms opened it uses about 35,000K. As more and more forms are opened (but not closed) the…
Dib
  • 2,001
  • 2
  • 29
  • 45
0
votes
1 answer

MDI Child Form Load

Loading multiple child forms from a loop into a MDI parent form. They are displayed one at a time. I would like to display all the created forms at once. I tried only using the .Show() method after they are all created, but they still only display…
Thomas
  • 342
  • 11
  • 29
0
votes
1 answer

Load Event of MDi child form not firing?

I have a simple form which calls an external class containing another form in a vb.NET application. The 2 forms are set up as an MDi parent and child. Does anyone know why when I call MDIChild.show() in the code of the parent, the load event does…
0
votes
1 answer

Passing integer value from MDI parent to child and back

I have a Windows Forms app with an MDI parent form (mdiBK) and a few child forms (form1 and form2 are the ones that matter). I would like to set an static int variable inside my parent form (mdiBK) and set it to '0'. On 'form1' there are 2 buttons…
oljko
  • 52
  • 3
  • 10
0
votes
2 answers

C# Winforms, assigning parent to new child object, other than instantiating form

I have an MDI container with two child forms. We've been taught (and the MSDN documentation only gives the example) to use the keyword 'this', which assumes that the child object in question is being created from the MDI container itself. If I were…
0
votes
0 answers

Resizing mdiChild form affects the other mdiChild form

I am creating an MDI application in which it has multiple mdiChild forms. When I resize one mdiChild form, it affects the other mdiChild forms.. How can I solve this? There are a lot of questions about mdichild forms here but none of them seems to…
0
votes
1 answer

C# how to make a child form topmost only inside the application?

I have 5 child forms in my c# application. one of the child forms named childFormopens another form subForm. What i want is, when subForm is open, user cannot click or do anything inside the application without closing subForm. But this should be…
Biswarup Dass
  • 193
  • 1
  • 5
  • 19