Most voted "mdi" questions
In graphical user interface, a multiple document interface (or MDI, acronym for Multiple Document interface) is a method of organizing graphical applications in windows residing in a single window, the main window of the application. The only exception are possible modal windows of the application.
Learn more…13 questions
Sort by count of
-
7
votes1
answer5232
viewsWhat do the terms MDI and SDI mean regarding the software interface?
What do the terms mean MDI (Multiple Document Interface) and SDI (Single Document Interfaces) regarding the software interface? I read about it, but I’m still confused about the terms, perhaps for…
-
3
votes1
answer141
viewsParent form superimposing child form C#
I’m developing a Windows Forms application in Visual Studio and I’m having a hard time. I put the parent form to Ismdicontainer and instead of adding Toolbox, I made a form only with buttons, it…
-
2
votes0
answers174
viewsIs there an MDI form for GTK 3 or 2 in Ruby?
There is a class that defines an MDI form in Ruby GTK 2 or 3, similar to that found in other languages like Delphi, C#, VB etc.? Note: MDI is that form for desktop applications that a window is…
-
2
votes1
answer444
viewsDisable Scrollbar from a Form MDI Container
Does anyone know how to stop Child Forms from moving beyond the screen and displaying a scrollbar? I wish there was a limit to moving the Child Forms... that they only move up to the screen size and…
-
2
votes2
answers460
viewsMethod to automate the call of Forms in C#
Here’s what I’m trying to do I am creating an application in C#, Mainframe is MDI Father, and I have other windows too. What I want is to use a class called "Formcaller" to call other Forms…
-
1
votes1
answer1302
viewsOpen external application as a child form in C#
I am needing to call an external application by my current application, in which this external application is being opened outside of my application and I would like it to be opened as a child form…
-
1
votes1
answer47
viewsWPF C# Current position of Mdichild?
I have implemented a MDIParent with 3 children. I want to know where the children are but I have no access to any property since: child.position is always (0,0). shaman I have: <mdi:MdiContainer…
-
1
votes1
answer421
viewsDelphi Mdichild flashing form when opening in modal mode
I have a form MDIChild which I open as follows: Application.CreateForm(TfrmManProduto, frmManProduto); However, sometimes I need this form in modal... with some tips I adapted my code the following…
-
1
votes1
answer93
viewsHow to control MDI forms through a general method?
I am developing a system with MDI forms. I have a menu that is the MdiParent and everyone else is allocated as your children. Originally, MDI allowed me to open the same form several times; then I…
-
0
votes1
answer197
viewsResize an MDI Form without borders
I’ve found many tips on how to resize a form without borders, all functional and good, but they don’t work when it comes to an MDI Form. Someone has a functional tip on how to resize an MDI Form?…
-
0
votes2
answers994
viewsA single form with multiple panels or MDI Forms. Which option is more efficient for program performance?
I’m a beginner in C#. I’m developing a simple application, which has several windows. Depending on what you need to do in the program, the user needs to open multiple windows to get to the required…
-
-1
votes1
answer92
viewsHow to make windows form take up all the space within the MDI application?
I am creating a registration and management system that works only with CRUD. The whole functional part of the system is working perfectly, but there’s something that’s been bothering me. I’m using…
-
-1
votes1
answer28
viewsHow to automatically switch and show between MDI child windows on a parent MDI in c# visual studio?
I have an application that when it loads the main form (parent), it automatically creates two children Forms and show maximized, I use the following code in the Parent form to create the two Forms:…