0
votes
1answer
34 views
How to show a * (asterisk) in Application Title when document has changed and is not saved
I have a MDI Application with one MDI child.
When a user changes a Textbox on the MDI child, the MDI child (= document) is changed and is not saved. I want this to be visible in t …
0
votes
1answer
30 views
Switching from MDI to SDI and Back Again
This sounds like it would be a simple task, but I'm running into some issues.
I have some fairly straightforward code for my C# application:
private void SwitchToSdi()
{
…
0
votes
4answers
211 views
Should I subtract 1 from the upper bound of my “for” loops?
I'm having a bit of trouble figuring out what's going wrong with this function. I'm not sure if I should be using -1 or not anymore, and no matter how I try to arrange the code it …
0
votes
2answers
87 views
How to check the “Z-position” of form in a MDI application?
Hello.
I have created MDI application in Delphi. Lets assume that I have a bunch of MDIChild forms in my application which are visible on the screen. I would like to perform a loo …
0
votes
1answer
111 views
Mdi form ensure visible
I am developing a c# .NET app with MDI forms.
When the Mdi children are moved around and using the scroll bars some forms will be outside the displayed area.
I would like to do to …
0
votes
0answers
38 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
42 views
Try to implement global keyboard shortcut in MDI parent/child form and other form by using ProcessCmdKey
I override ProcessCmdKey() in my MDI parent form class and have some keyboard shortcut calling method in same class. But I wish to make these hotkeys working in parent/child form a …
0
votes
1answer
16 views
How to uses a ToolStripContainer whith Dock=Fill on a MDI parent???
How to uses a ToolStripContainer whith Dock=Fill on a MDI parent???... When I drop a ToolStripContainer on a MDI parent and assing fill to a property Dock it hide all the MDI chil …
1
vote
3answers
89 views
Delphi MDI Application Next Window menu item
How would I go about implementing the Ctrl+F6 Next Window action in the Windows menu for an MDI application in Delphi 7?
1
vote
3answers
96 views
Calling .Parent from a form causes textbox problem, MDI
I want to make a form contained in another form. The problem is the application is already a MDI, and you can't nest MDI's.
If I do
childFrm.Parent = parentForm
some controls be …
0
votes
1answer
90 views
MDI Applications in WPF
I am working on a new .Net WPF project and will most likely be using the PRISM framework.
One of the requirements that I have for the application is to have an MDI type user inter …
0
votes
6answers
370 views
Move one form to another winforms - C#
Hi,
I have 2 winforms Form 1 and Form 2. I have button1 in form1, when i click on button1 from form1 i display form2.
Form2 ins = new Form2();
ins.MdiPare …
1
vote
4answers
65 views
How do I find which control is focused?
I have a .net MDI application written in vb.net. I'm trying to program a form that will allow the user to select a special character such as °, µ, ², ³, ɑ and so on and have that c …
1
vote
3answers
1k views
How to prevent ToolStrip from docking in another ToolStripContainer?
I have an MDI application that allows me to open different types of child windows. I can open multiple (but different) instances of the same type of child window. (Example: I can …
0
votes
1answer
20 views
How would you work with “MDI-ness” in an application that wants to use the MVP pattern?
The situation: MainForm (assigned to the MainPresenter) is up and running. The user click a ShowFoo button - an event is passed to the MainPresenter which in turn creates new FooPr …
