Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
202 views

It is possible to create more than one MDI form in a delphi application?

I developed a mdi application that has in its main form several child windows that are created at runtime. The child windows are custom forms. I want to display those custom forms in another form from ...
4
votes
3answers
1k 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 form is off the screen. ...
3
votes
4answers
839 views

How to avoid Multiple Child forms shown in MDIParent C# Win Forms

I want to avoid my child form from appearing many times when a user tries to open the child form which is already open in MDIParent. One way to avoid this is by disabling the Controller( in my case ...
3
votes
1answer
2k views

How to open a mdi child form from another with vb?

How to open a mdi child form from another with vb in the main mdi parent?
3
votes
2answers
2k 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 following helper class ...
2
votes
1answer
172 views

Winforms MDI and TreeView

I am currently working on a winforms application. In one of requirements I need to make sure that I can add a node to a treeView which is contained in a child form , when i click on a tabstrip button ...
2
votes
1answer
271 views

Is it possible to change size of minimized window in MDI C# Winforms

Users complain that when they have several minimized windows in MDI container it's impossible to distinguish them unless they resore each. I wonder if it's possible to make minimized window a little ...
2
votes
3answers
1k views

C# MDI Parent detect when MDI Child is closing?

I'm attempting to detect, on the MDI parent, when my MDI child form closes, and react accordingly. The MDI parent shouldn't do anything until the MDI child closes. Here is my code, I'm unsure as to ...
2
votes
2answers
583 views

c# main menu and mdi forms

So far in my life, as a .net developer, I have made heavy use of mdi forms to display particular "menu points" such as for instance "module 1" "module 2" and so on. I have been doing this the ...
2
votes
1answer
268 views

LayoutMDI all but one child form

I have an MDI Application and have a sort of menu that has been created using a child form so it stays within the parents window. What I would like is when I call LayoutMDI (or some variation) for all ...
2
votes
2answers
2k 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 want to know how to ...
2
votes
5answers
3k 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.
2
votes
2answers
5k 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 code is not doing ...
1
vote
3answers
40 views

FormClosing Event not called for MDI Child Form

I am trying to close a formular when opening a new one. When closing an formular, I want to process some special logic in the closing event. But the closing event is never called, neither in the ...
1
vote
1answer
92 views

Maximize MDI child form

I'm working on a legacy WinForms MDI application and have some trouble making the child forms behave as I want. My objective is to have the child form always maximized (docked). The problem is, that ...
1
vote
2answers
39 views

How to check from a child form if another form is running in it's MDI parent?

I have a MDI form. I want to check within a running child of this form if another form is running. Something like: if (this.MdiParent.MdiChildren.Contains(MyForm2)) { //Do Stuff } ...
1
vote
2answers
53 views

Opening multiple instances of a child form in a MDI Form with unique identifiers

In my application I want to be able to open a new instance of a form as a child multiple times while they have a unique identifier. At the moment I do like this: private int _consoleWindowCount = 0; ...
1
vote
2answers
60 views

Shift between MDI child forms

I have a MDI form, and I want to be able to shift between the child forms. Is there any method to do this? I know there I can use CTRL+F6 to achieve this, and I could simulate those keys; but I would ...
1
vote
1answer
192 views

c# MDI Parent check child forms opened

I'm making a MDI windows forms app and I have a panel inside the parent. Everytime I open one child I set the parent's panel visible=false with the event: MdiChildActivate. But when I close all the ...
1
vote
1answer
95 views

how to prevent a certain mdichild form from getting focus/activation when switching between other mdichild forms using Ctrl+Tab? C#

In my mdi application i have four mdichild forms, one of them is used as a background and holding some controls.. How to prevent this background mdichild form from getting focus/activation when ...
1
vote
2answers
404 views

How to repaint a MDIChild form when the MDIChild itself contains containers such as TPanel with aligned := alClient and ParentBackground := False

Summarization: Please see Andreas' knowledgeable comments! ========================================== As shown in the following code, TForm7 is the MDIForm form, TForm8 is the MDIChild form. TForm8 ...
1
vote
1answer
134 views

How can I style a custom control based on if any of its children have focus?

We have a custom canvas which has specialized nodes that behave a lot like a standard MDI application's windows. The desired behavior is that if any of the child controls of the "window" have the ...
1
vote
5answers
609 views

Controls in container form come over child form?

In a container form I have menu and buttons to open ther forms. Here I am facing a problem when I open any form these buttns and lables come over newly opened form. Please guide me how I can ...
1
vote
1answer
897 views

Is it possible to use ShowDialog from MdiChildForm without blocking all others MdiChildForms and MdiParent?

I need to open modal form (frmD) from MdiChild (frmB) form without blocking main form (frmA) and all others opened MdiChild forms (frmC). Then i switch to frmC the frmD is hidden. This is the similar ...
1
vote
0answers
474 views

How to customize the titlebar of a QMdiSubWindow with qss?

I'd like to customize the titlebar of a QMdiSubWindow. For that I use a qss. QMdiSubWindow { border: 1px solid #000000; background: #000000 } QMdiSubWindow:title { background: #000000 } The problem ...
1
vote
2answers
337 views

mousewheel problem on mdichild after setting focus on base form controlls and comming back to the mdichild

Hi Today I encountered a new problem with MouseWheel I have written some codes in mousewheel event of my mdichild forms , when I open new mdichild form and select it and do mousewheel , it detects the ...
1
vote
1answer
254 views

Child Form not refreshing when i try to start the app from MDI form?

I have MDI form and child forms in my app. Here my situation... Main Form : MDI Form Register Form : Child of MDI form Desig form : another form which will open when we will click one button ...
1
vote
2answers
433 views

Windows MDI Child Form Title Bar

The MDI child forms, when shown, display their title bars for a split second. Then the forms are loaded normally. Is there any way for the forms to load without showing the title bar and form border. ...
1
vote
1answer
270 views

Problem with controls in MDI form

I have placed a button on MDI form , now when I open a child form , the button remains on top and distracts the child form , is there a way to solve it? I have done following to send the button back ...
1
vote
1answer
2k views

Merge menu strip items for MDI windows

How can I merge menu items of parent form and child form with same menu name?
1
vote
2answers
571 views

Controlling the placement of fsMDIChild windows in Delphi

How do I control the placement of an MDI child window (FormStyle := fsMDIChild) in Delphi or C++Builder? I know that I can set Left, Top, Position, and so on, but for an MDI child in particular, ...
1
vote
1answer
355 views

MDI child form does not activate when clicked in client area

My VB.NET app supports several kinds of MDI child forms. Some kinds, but not others, are 'troublesome' -- they cause the focus mechanism to become weird. Once a 'troublesome' child form has been ...
1
vote
2answers
1k 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 control on the main form. ...
1
vote
2answers
2k 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 parent's potential ...
0
votes
0answers
43 views

Opening external application inside VB.NET MDI Form

I need to open some external applications such as notepad.exe inside the VB.NET MDI form, and also I need to make sure that there is exactly only one copy of this running always. I used the code ...
0
votes
1answer
62 views

VB.NET MDI Children Focus only on Title Bar Click

One would imagine that clicking anywhere within the MDI Child form (or on any control) will focus that form. But in my application I can only focus a MDI child by clicking on its titlebar, which is an ...
0
votes
2answers
215 views

C# Windows Form: Mdi Parent and Child form issues

I have a parent form that is set as an Mdi container. I load a child form called Plot from a menu bar click in the parent form. The code is: protected void menuPlot_Click(object sender, EventArgs e) ...
0
votes
1answer
122 views

how to Show MDIChild Form on Top of the MDIParent's Controls

I have a MDI-Parent Form with many ChildForms, when I want to add a control on my Parent form, Child form appears under the control, For example I want to add a groupbox and a PictureBox on MDIParent ...
0
votes
2answers
62 views

Opening a child form from another child form and set MDI to parent form - how to do?

I have a MDI form. within this MDI form I can open some child forms using: This is within MainForm Form1 f1 = new Form1; f1.MdiParent = this; //this refers to MainForm (parent) f1.Show(); This ...
0
votes
2answers
278 views

mdi child form maximized windowstate - BorderStyle

I want to open a child form inside parent with maximized windowstate. I don't want to let the user minimize/ maximize/ close that child window, so I set BorderStyle = None for childwindow and also ...
0
votes
4answers
72 views

MDI Child Forms C#

How do you check for a close event for an MDI child form when clicking the "X" button and let the parent form know that it has closed?
0
votes
0answers
214 views

Set Location Of MDI Child Form Within Parent

I have a two project in a win application and I have utilize each others objects and controls via providing file reference to the project. All are working very well but the Problem of set location of ...
0
votes
1answer
32 views

How to read the parent form datagrid into child form

How to read the parent form datagrid into child form. In the Parent Form Datagrid and read into Child form. Anybody can help me?
0
votes
0answers
78 views

Dock fill error on maximized child window of mdi window

I want to open a child window of an mdi window at maximized size with a split container. I have set the child window's WindowState as maximized, and the splitcontainer's Dock as Fill within the ...
0
votes
1answer
76 views

main form resizing not showing the image buttons in child form

I am working on a .NET C# application that has a main Form which is MDI container. When the user resizes the main form, scroll bars appear and the imagebuttons are covered by the scroll bars of the ...
0
votes
1answer
84 views

how to change the location of a minimized mdichild form?

In my MDI application i have changed the size of its MDI client to avoid the scrollbars that appear when a portion of an MDI child form is moved out of the view of the client area of the MDI parent ...
0
votes
0answers
61 views

How to make it run according to the last active form when I clicked a menu button?

I have a main form which has a ribbon control at the top, and also there are two panel controls. the left panel which is panel1 is only for navigation through forms or let's call it pages.. the ...
0
votes
1answer
92 views

Help with Multiple Document Interface(MDI)

I'm new in Visual Studio 2010 and I an creating an application that saves the information of the Company and its Employees. I already created 2 forms. In the first form is the main menu where I put 2 ...
0
votes
1answer
69 views

How to show MDI Child in 2nd monitor screen?

my question is that there are any ways to drag / show mdi child form in the another monitors. i want to drag child form and show it in another monitors.
0
votes
0answers
103 views

winforms - mdi app - menu windowlist and preventing multiple instances of childforms

It's a bad title... I have a mdi application and I have numerous child forms which are tracked by a menustrip "Windows" menu. As I open childforms they show up numbered under the Windows menu group. ...

1 2