MDI (Multiple Document Interface) is a type of GUI , which presents a single parent (container) window for other windows in a specific application
0
votes
1answer
4 views
How can I disable the document listing in the File menu, after my menu items?
I'm doing maintenance on a MFC MDI application and I need to remove child document window entries from the main window menu.
My File menu template has just an item, the Exit entry, but on execution ...
2
votes
1answer
72 views
Delphi minimize all MDI children
I have trouble in minimizing all my MDIChildren and came across MDIChild to minimize not activated properly
My code to minimize all my children is:
procedure TMainWindow.MinimizeAll1Click(Sender: ...
0
votes
0answers
19 views
change the default image background for MDI Application in netbeans
I want to change the default image background for MDI Application in netbeans.
I googled about it and I found this article :
How to change jdesktoppane default backgroud image?
I did the same but ...
0
votes
1answer
49 views
C++ MFC MDI change child window variables on creation
I have an MDI application where a dialog is called when the OnFileNew() function (processed by the theApp object) is called. This dialog allows the user to set values to some variables that then need ...
-2
votes
1answer
39 views
Add a form to a MDI child
In Form1 I'm enabling IsMdiContainer and I added a MenuStrip. In Form1_Load I "new" Form2 and I'm assiging Form2.MdiParent to this which is Form1. I'm also maximizing Form2 and this operation works ...
4
votes
1answer
129 views
How to pull a MDI child window out of the main form?
I want to create a MDI application with it's own task bar so the user can have fast access to the child windows he/she wants to bring to front. Then I had the idea that an user who works with two or ...
0
votes
0answers
30 views
mdi child doesn't show maximized
We're having the following issue in our application: When we open an mdi childform it comes in maximize windowstate as it should be but it is shown in normal state.Tthe background from the parent is ...
0
votes
1answer
52 views
C++ MFC MDI how to change what class view displays based on active document
I'm working on an MDI application that has an object browser (CClassView) that has to change what it displays based on what "document" is active.
PS: None of my searches have worked.
1
vote
0answers
22 views
Use custom tab bar with QMdiArea
I see that QMdiArea has tabbed view mode. I want to be able to split the main window with two QMdiArea widgets and to be able to drag and drop tabs between each of them. I have already done it with a ...
0
votes
1answer
39 views
Managing JInternalFrames in a Swing MDI
When creating an MDI Swing GUI, I have a number of JInternalFrames that are added to a JDesktopPane in a JFrame. I make these internal frames invisible by adding setVisible(false) in the constructor, ...
0
votes
1answer
46 views
Calling A Tool From Another Form to Another?
im working on a code-editor(winforms) and Im just wondering if its possible to call a specific box from a form to another?
sample for this set of codes:
int line = 1 + ...
0
votes
0answers
7 views
Office .NET COM add-in create child window
There is plenty of documentation of how to create an application-level add-in for Microsoft Office using .NET and COM interop. Using that technique it's easy to create and display forms either using ...
0
votes
0answers
29 views
Different behaviour between MDI button and child button
I'm new to WinForms, but not new to C#.
I realize an MDI application with some buttons in a toolstrip (add, update and delete) with public events that works on every child forms I open.
In a form I ...
0
votes
0answers
28 views
Using same menu items on all MDI Child Forms
i'm creating a project which contains a parent form with few controls on it to manage child forms. I was trying to create a save button which will function on all child forms. I mean this button will ...
1
vote
0answers
31 views
Memory & resource wise, MDI application or panel with lots of controls?
This is a very general question and I apologise in advance. I'm writing a small editor like tool, it's essentially going to modify company specific files that look like CSS + Java stuck in one ...
2
votes
1answer
64 views
Pop up window gives an error on mdi form in C#
I have a form that works fine on its own, but I want to add it to an mdi parent form.
The problem is that I have a small form that pops up, asks for info, then passes the info to the original form.
...
0
votes
1answer
58 views
Visual Studio Windows Form - pass data from seperate form (not parent) to Child MDI
Ive searched and searched but cannot find the answer to this question.
How do I pass data from a form that is not a parent to a child MDI in visual studio windows form.
Scenario:-
Parent has a menu ...
0
votes
2answers
47 views
Form calling another form, just to confirm user wants to proceed [closed]
I'm using C# in a VS2008 environment.
I have a form called frmStrategy5YrPlan That has a data grid view in it that populates with data and then allows users to key in new forecast data. When ...
1
vote
3answers
77 views
Customize MDI in c#
In my project i have to run multi-interfaces at a time. I used isMdicontainer property. But problem is whole area is converted to MDI. Can i set boundaries for it,like in Photoshop(below menu-bar ...
0
votes
1answer
104 views
Delphi Create Maximized MDI Child with AnimateWindow
I have an application with MDI forms, and i've been trying to make an Child creation effect, with Animatewindow().
My question is, all my MDI forms are with Windowstate=wsMaximized, and don't know ...
10
votes
2answers
188 views
How can I remove the sunken inner edge of an MDI client window?
The other day, I started to develop my new project. There should be a MDI form with some child forms on it. But when I started to develop, I ran into a following problem: when the main form becomes ...
0
votes
1answer
41 views
MDIsubwindow inside mdi subwindow Qt
I only wants to know if it is possible to do in QT what I'm imaging:
I want to open several different Windows (lets say widgets) inside several MIDsubwindows. So the MDIsubwindows functionality ...
0
votes
0answers
73 views
Code for binding gridview works in Single Form application but not in MDI Form application
One of the child forms in my application is having the grid in which data is bounded in the program.
My code is :
private void SearchForm_Load(object sender, EventArgs e)
{
...
0
votes
1answer
66 views
specify parent MDI form
I am trying to specify the parent MDI form when showing a form in c#
All the examples suggest just using
FormVariable.Parent = this;
this works ok assuming you want the form to be opened from the ...
1
vote
0answers
19 views
ActionScript MDIWindow Resize Issue
I have an MDIWindow for a tutoring extension to BigBlueButton I am writing in ActionScript . I am a novice with ActionScript. Whenever I create this window it is very large. I can not figure out why ...
2
votes
0answers
87 views
Arranging borderless MDI child forms
I have an MDI Parent form with potentially many children. So, I have the issue of the borders of the children taking up a lot of space. My solution is to give the user an easy to access option for ...
0
votes
0answers
13 views
can form have a anchor property?
I have a four mdi forms in my mdi parent. i want to have a fixed locations, since my application is swappable with anyforms in my parent. thus, i want to set the form1 to anchorstyle.top | ...
0
votes
0answers
27 views
VB.NET Go Through MDI Childs
I have a MDI Parent with several MDI Childs in it, and those MDI Childs are opened on runtime.
I would like to know if there's a way to go back to the previous MDI Child with only one key. Something ...
-1
votes
1answer
181 views
How to manage .net winforms, sdi or mdi? [closed]
I am working on a .Net winform project. It's a middle-size app which has several windows for editing, query and listing user data, as well as several configuration windows. I used to be an MFC ...
0
votes
1answer
137 views
How to set MDIParent property of Child form in nonMDI Class?
I am working on MDI app which have Child Forms. I have to show Child Window once a certain conditions is met.
I created a separate Class named clsDashbord having method loadDashboard() which is ...
0
votes
0answers
202 views
Setting background Image of MDI Form
I am using this technique, it works well to change Background Color but not the image. My Image is Small in Size than the window so I use BackgroundImageLayout to Stretch but it's not making any ...
0
votes
1answer
138 views
Which is efficient.? Opening Forms inside a panel (or) a MDI container
I had designed my application by using the concept SDI, That is Single Document Interface. The structure of my app is explained below,
My Application consist of mainly two forms,
Login Form
Main ...
0
votes
2answers
131 views
Following DRY with WinForms MDI Child windows
So I'm building an MDI application in C# using WinForms. I can't for the life of me figure out how to follow DRY in this scenario. I'm opening new MDI children using toolstripmenuitems in my main menu ...
0
votes
1answer
62 views
MDI open tab on item drag
so I'm having some trouble with opening the tab to where I want to drag some data.
I have 2 child MDI forms, with both a listview.
I would like to drag a listviewitem from mdichild 1 to mdichild 2.
...
0
votes
0answers
103 views
Windows Form MDI Maximized Child on Windows 8
I have a windows form app with a main form working as MDI container when i open an mdi child form and it have its WindowState as Maximized happend what you can see in the picture 1 the form is ...
-2
votes
1answer
194 views
How to Display Label on MDI Form without background Color(Transperent) in c#
I placed an MDI form in my application . I have given Background image to the MDI Form , And I wants to Display The Label On MDI Form and also wants to add some picture buttons.
So, How should i ...
1
vote
0answers
35 views
Access XBAP function
I have written a XBAP application which runs on iis at the moment. Now I have a requirement to create a new MDI application which can host multiple xbap applications. I have created this by ...
0
votes
2answers
200 views
Infragistics ribbon goes over maximized MDI child
I'm using UltraToolbarsManager from Infragistics NetAdvantage WinForms bundle (v 2012 2) to introduce ribbon toolbars in an existing WinForm application.
I set up the main ribbons in the main MDI ...
1
vote
1answer
302 views
MDI Parent Form :- setting Parent (Maybe just the title is duplicate)
Look at the answer of this question. I have tried the second comment of the aceepted answer. The problem is with "Application.OpenForms[0]". It gives me error saying "Form that was specified to be the ...
0
votes
0answers
122 views
can I somehow disable the “lag” in the mdi parent form?
I have the following problem:
I have set a background image to the parent form. And every time I open a child and move it somewhere, the parent redraw the bgimage, or reload it and because this it ...
0
votes
1answer
78 views
Resize MDI container and others
So, i am working in C# and i want to make an application that is more like an interactive manual.I have and admin that adds articles and some user that consult the articles and make tests.
I now want ...
0
votes
0answers
34 views
Detect CMFCOutlookBarPane mouse clicks
How do you detect mouse clicks on the CMFCOutlookBarPanes? I want to change a view to the right of the Outlook bar, just like it does in Outlook when pressing a pane.
The only mouse click on the ...
0
votes
0answers
198 views
Design Choice - MDI with tab control or tab pages with controls?
I'm in the process of building a little application to edit some specific text files. I want to have a tabbed interface so I can switch between documents quickly. The way I see it is I have two ...
0
votes
0answers
412 views
Java MDI Form with internal Frames and Navigation buttons
Im developing MDI Application using Java. I want my Application's main window look like in the image below. I managed to design MDI form and toolbar at the top. But i dont understand which containers ...
2
votes
1answer
51 views
How to detect two windows near each other
I've got an MDI application, which allows users to drag and move windows around the screen. I would like to detect when two windows are near each other, but I am unsure how to go about this. I am ...
0
votes
2answers
151 views
Delphi MDI application with components shared using pointers
I am developing an MDI application (Delphi 7) that will load .bpl packages in the form of plugins as the MDI children. Only one instance of a plugin can be opened, but obviously multiple plugins can ...
0
votes
0answers
33 views
About mdi form activated
I use mdi form in my project. I have main form and chiled form. child forms open under the main form. when I open new form on child form and I close it I come back my chield form but I want to do ...
0
votes
0answers
55 views
add an 'add tab' button next to MDI Tabs
I've been looking for this all over the internet, including this site, but I can't find a good solution.
I have a winform in visual basics 2010 express. It's based on the Ie7Clone by Thomas Maxwell ...
0
votes
1answer
176 views
ShowDialog in mdi
I need to open with Showdialog() in mdi form because I need to stop code until the mdichild finish.
The structure of program is this, I open a mdichild in onCreate of this I instead the class and in ...
0
votes
2answers
122 views
Make my MDI application topmost of other applications?
I want to make my MDI MFC application topmost of all other applications' windows running on windows OS. So I can make a screen shot of one view within my application.
But functions like ...


