MDI & MDI Child Forms Menu's?

Sep 19, 2011

I have a MDI child form with its own menus. (TestForm)When I call the child form (Testform.show) from the parent form menu, the MDI Child form's menus are appended to the container form..Essentially, the container form steals the menu of the child form..

View 2 Replies


ADVERTISEMENT

Forms :: Same Menu Shortcuts In MDI Parent And Child

Apr 30, 2009

I want to use the same menu shortcut keys in a MDI child as in the parent...the problem is that the parent seems to receive the Event first and is calling his menu entry. The child (though it does have the focus) does never receive any event whatsoever...I can bypass this behaviour by adding a Textbox to the Menu, and the moment that one has the focus the menu shortcuts are working as expected (child gets it first, after that it's passed through to the parent).

View 1 Replies

Forms :: Enable/Disable MDI Parent Menu From Child Form?

Jan 5, 2012

I'm writing an MDI app in vb.net vs2010. The MDI form has the default MDIMenustrip menu with several menu items. Each has some subitems. None of the child forms have a menustrip defined. I thought it would be easy to call a public subroutine in the MDI that would disable or enable the MDIMenustrip items. If I execute the routine from the MDI form, the menu items disable/enable just fine. THe problem I have is when I call the routine from a child form. How can I control the MDI menu from a child form?

View 3 Replies

Menu Strip Appears On The Parent Form But Not On The Child Forms?

Feb 13, 2009

I have created a parent form and 2 child forms. Each of the forms have menustrips. When i run the application the menu strip appears on the parent form but not on the child forms. I have the menu strip set to visable.

View 4 Replies

Change Title In Window Menu For MDI Child?

Dec 1, 2010

I have an MDI child window that the title text can be changed, depending on some user interaction. How can I update the 'Window' menu in the MDI parent to reflect the updated window title?

View 3 Replies

Hiding Menu Item From Child Form?

Dec 17, 2011

I have a visual basic 2010 project that has a menu item hidden (visibility). there is a second form (child window) that you can popup and hit a button to show the menu item. I am having trouble finding the right commands to do this. I am use to C and the API where you can get the handle to the parent windows menu, and do it that way. But I have been unsuccessful in VB.

View 4 Replies

How To Get Context Menu Shown In Child Form

Feb 13, 2009

I have a MDI app. At the moment I merge my context menu from my child to the parents tool strip menu. But now I don't get a context menu show in my child form?

View 2 Replies

MDI Child Form List / Sub-Menu Options

Jan 19, 2012

As you can see from the screen shot I have managed to get MDI Parents / Child forms working, and managed there to be a menu option on the Parent form that displays all the Child forms opened at the time. What I was wondering, and as of yet through research haven't discovered, is there a way when the list of windows is created, if a user highlights any child in the list it opens a sub-menu from its name (eg. Rename Window, Center Window, etc).

View 4 Replies

MDI Child Form List / Sub-Menu Options?

Jun 23, 2012

MDI Child Form List / Sub-Menu Options

View 12 Replies

Mdi Parent Menu Save Child Text?

Jun 9, 2011

Ok So I am trying to save text from a textbox to a rtf file. The Saves Text would come from the active mdi Child. However I can not figure out how to Save using active child just calling the actual form name. Below is my code so far.

Private Sub SaveAsToolStripMenuItem_Click(ByVal sender As System.Object,
ByVal e As System.EventArgs) Handles SaveAsToolStripMenuItem.Click
Try

[code].....

View 4 Replies

.net - Add Click Event On Dynamically Created Child Menu Items?

Jun 9, 2012

How can you add a click event to dynamically created menu item?I thought I could do something like

Loop through all the items in the Menu1.DropDownItems then create a mousedown even on the item and execute an action based off that.I'm new to VB and was wondering what logic to use. Will that even work? How will the events be saved through the life of the application?

View 1 Replies

VS 2005 - Gotchas With Docked Forms - Forms - Displayed Using Menu Items To Display Information To User

Nov 10, 2011

We have an application that has a main form with a map on it. Right now the paradigm is to have forms that are displayed using menu items to display information to the user. Most of these forms are modal forms, but a couple are non-modal forms that interact with the map. For some of the forms, it really would make for a better user experience if we could dock them in the main form of the app and allow the user to see both the form and the map. For instance. We could have a list of map features in a docked window, and select one of the items on the list and have the map zoom to that feature. Or do the reverse: let the users select a map item and have a docked window that shows details of the feature. Sounds great, but I wonder about what sort of gotchas we may encounter. In particular, what if we have two windows docked at the same time? Could we get tangled up in our event code?

View 2 Replies

Convert Already Designed And Working Forms To MDI Child Forms?

Dec 11, 2009

I build my first Project composed of several forms and it�s working just fine. Id like now to redesign the project as a MDI Application. Once created the parent form, I can create child forms but thats not what I need. What I would need is convert my already designed and working forms to MDI child forms. How can that be done?

View 1 Replies

Forms :: Drag & Drop Between 2 Datagrids Between 2 MDI Child Forms

Feb 11, 2009

Ive been working on this project of mine for some time now... though im not involved in IT in my current company, im just trying to help to at least have their system computerized (they are still doing it manually by paper & calculator)... I have one problem though which made me stick for 2 days (and still counting) without progress...How To Drag & Drop Between 2 Datagrids Between 2 similar MDI Child Forms

View 16 Replies

Set IsMidContainer In Forms For Parent-child Relationship Forms?

Jul 1, 2009

I know I can set IsMidContainer in forms for parent-child relationship forms. I just want to know if the parent form could be a panel. If so, how can i do it?

View 1 Replies

Require Assistance Making A Menu From A Single Parent/Child Table?

Oct 25, 2010

I have a single table that holds my Categories

CatID, CatName, ParentID

I have often used this layout to show Root Categories where the ParentID IS NULL. I would like to be able to create a vertical Menu (using a repeater and an <UL><LI> that displays the Root Categories and ideally, a collapse panel that would expand with the subcategories. Given the above Table format, it is also easily possible to make the hierarchy unlimited.

how to make a single dataset that understands the Child relationship.

View 1 Replies

.net - Child Forms Not Getting Minimized Along With The Parent Forms?

Apr 8, 2011

I have made a project on Library management system using Microsoft Visual Studio 2008 and Sql server 2005 .I have used MDiParent form in this project, from where I can click on the menu item to open the desired form.

I am now able to open the child forms in the main window background.Now what happens is When I click on one menu Item it open in the parent form background.I am able to open all child forms corresponding to the click event in the MenuToolStrip ...all in the Parent form Now the problem is that I cannot minimize child forms when I minimize Parent form..I want child forms also to minimize along with the Parent form.. Also are child forms still not attached to the parent Form is also my question here.....

View 2 Replies

Forms :: How To Avoid Child Forms Overlapping In MDI

Mar 26, 2011

i'm a beginner in MDI form. i created a MDI form with buttons and child forms. when i click the forms continuously, many forms will be opened. how to avoid forms overlapping, in other words, duplicate

View 6 Replies

Interface And Graphics :: MDI Parent / Child - Child To Check To See If It Is The Last Child Object Before Closing

Feb 18, 2011

Im working with MDI parent/child objects. when closing the child objects i need the child to check to see if it is the last child object before closing. i couldn't find anything on google, maybe im searching for the wrong thing.

View 2 Replies

MDI Main Form Having Menu Strip And One Maximized Mdi Child Form?

Dec 14, 2009

The problem is that icon on the Child Form appear in front of Menu strip control on MDI form when child form is maximised.

View 2 Replies

Forms :: Save From A MDI Child?

Oct 12, 2010

I am re-doing part of a GUI for my project, The Windows Alias Generator, and decided to switch to MDI. The child forms consists only of RichTextBox1. Here's the generate routine called when the save is clicked:

Private Sub SaveAsToolStripMenuItem_Click(ByVal sender As Object, ByVal e As EventArgs) Handles SaveAsToolStripMenuItem.Click, SaveToolStripButton.Click
Dim ActiveMDI As Form = Me.ActiveMdiChild[code].....

But because I cannot define richtextbox1.text from the currently active MDI, I cannot use this routine...my question is this: How would I get RichTextBox1.text from the save option in the MDI form?

View 4 Replies

MDI Child Forms Not Interacting

May 11, 2012

I have a MDI parent on which i launch a child form

Dim NewMDIChild As New Frm_addOT
'Set the Parent Form of the Child window.
NewMDIChild.MdiParent = Me
'Display the new form.
NewMDIChild.Show()

His child form contains several comboboxes which hold data from a dbase(sql)

When new data is entered in the cmb it checks the database and if it isn't in there it launches another window

FRM_OTlistaddklant.Visible = True
and copy's the newly entered text in a textbox.
FRM_OTlistaddklant.TB_klantnaam.Text = OTaddklant_naam

then i can give in the details etc.

now, when this is done and the users presses a button "Add"

the information is written to sql(which works perfect)

than i have a public sub on the Frm_addOT which should refill the combobox and
also set the backcolor to a specific color.

and the last two things will not work. Actually when i try to change the backcolor on Frm_addot it triggers the event backcolorchanged and says it has changed but it is not visible.

View 5 Replies

MDI Child Forms Resizing

Jan 19, 2011

Has anyone ever had or dealt with resizing issues on MDI Child forms? I am working on a VB.Net Windows applciation project I inherited from another devloper. When I took it over the forms had already been designed. There are one MDI Parent Form and two MDI Child Forms. When the application starts up the parent form and one child form open by default. Both the parent form and the child form will maximize, restore, and minimize. Although I have to move the parent form slightly, when it is not maximized I can resize it with the mouse pointer as expected. The child form will not resize and when I move the cursor to the border of the child form I do not even get the mouse pointer. Also, when both the parent and child form are maximized the vertical scrollbar on the child form is no longer displayed.

One potential problem is that there are lots of controls on the child form, which are inside several group boxes. When I comment out the controls, the blank form displays without the vertical scrollbar but will resize with the mouse pointer as expected. When I uncomment the controls the resizing does not work any more. The AutoSize propery on all of the controls is set to True. I tried commenting out the code setting the Autosize property to True on the group boxes only. The result of that is that the resizing still does not work and I lose the vertical scrollbar.I am trying to avoid having to redesign the form completely, however I am running out of alternatives. The project will not pass UAT if the resizing does not work.

View 9 Replies

MDI Parent And MDI Child Forms?

Feb 11, 2010

I'm just getting started in VBE 2008 porting a VB6 program and have created the MDI Parent form. I've added a form called frmNav and need to designate this and all subsequent forms as MDI child forms. Is there somewhere in each form's properties where I designate this? It used to be in VB6 there was a property called "MDIChild = True." input id="gwProxy" type="hidden"><!-- Session data--></input> <input id="jsProxy" onclick="jsCall();" type="hidden" />

View 1 Replies

[2008] MDI And Child Forms?

Mar 21, 2008

In VB6, MDI applications were possible. You'd create a form and a few Child forms and go with it.

View 7 Replies

Access Arrays From Many Child Forms?

Oct 26, 2010

I want to access my arrays from many child forms. Where should my arrays and declarations be? and what is the code to access them?

View 12 Replies

Clipboard Shortcuts On MDI Child Forms?

Jun 2, 2010

I have some VB.Net WinForms I imported from VB2005 that are MDI Child forms. In the old project the clipboard shortcuts work (Ctrl-V, etc.) but in the VS2010 project they do not. the ShortCutsEnabled property is true.Any way to get these working again without adding special code to replicate the feature? I have a bunch of forms to convert....The parent does have KeyPreview but I can comment that out and the problem still exists. I also hook the TextChanged event for dirty logic but I can comment that out also to no avail.

View 6 Replies

Close Parent And Child Forms?

Oct 5, 2009

I have been looking around at how I can close my parent form and my child form. This article: [URL] has some information but it either doesn't work for me or I am putting the wrong information it. What I want to happen is when a button is pressed I want to close both parent and child forms and then go to another form (frmResults). Then there will be a button on frmResults that will take me to the beginning form (frmPTCalculator). With this code below when I click the button on frmCalculator it goes to the MDI form and both parent and child forms are there.

my Parent form is called: frmGender
my Child form is call: frmMale & frmFemale

Below is what I have tried from the example in my Child form frmMale:

Private Sub btnResults_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnResults.Click
Dim frm2 As frmMale = New frmMale()
AddHandler frm2.FormClosed, AddressOf frm2_FormClosed

[code]....

View 3 Replies

Communication Between Child And Parent Forms

Oct 25, 2010

VB.NET 2003 makes it difficult to have a child button create an event on a Parent form control. I would like to change the state of a control on the parent form by using a button on the child form.

View 6 Replies

Creating A Bunch Of Child Forms

Mar 19, 2012

Is there a quick way of creating child forms? I am going to have 20+ and all the code I can find is this below:[code]Can I not make a subroutine and send the form into it to be made a child form? Something like this pseudo code:Is there a fast way like this available?[code]

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved