problem with windows appln
-
two options that come to mind, 1) Using a tabbed form 2) Panels, then hide and show the panel you want
Weight loss Target Weight at start [1/Feb/2009] 127kg Weight now [31/Jul/2009] 107.7kg Target weight : 80kg Only 28 TO go hope to be there by March Wish me luck!
Hi, Thanks a lot for replying so soon. but i need a mini,max,close buttons on the top like a normal windows form.
-
Hi, I am working on a windows application. The requirement that's troubling me is I have an MDI form(Parent form) using which I can navigate to other forms.The view should be in such a way that when the user clicks a menu item--Users Management the window should not open seperately but with in the form. A very good example for this is in web application we have master pages which is common for all the pages. when the user clicks a link only the content in child page changes. Thanks in advance
-
Yeah almost same ... Thank You
-
Hi, I am working on a windows application. The requirement that's troubling me is I have an MDI form(Parent form) using which I can navigate to other forms.The view should be in such a way that when the user clicks a menu item--Users Management the window should not open seperately but with in the form. A very good example for this is in web application we have master pages which is common for all the pages. when the user clicks a link only the content in child page changes. Thanks in advance
I think you're looking for the
Form.MdiParent
property. Set it for the child form to be the parent form and the relationship is set. -
You must have really got up someones nose - a whole bunch of univotes on your article. Obviously before the comment requirement was put in place
Never underestimate the power of human stupidity RAH
-
You must have really got up someones nose - a whole bunch of univotes on your article. Obviously before the comment requirement was put in place
Never underestimate the power of human stupidity RAH
Yeah, people can be childish at time. I just take an aggrevate view and not worry about these people.
only two letters away from being an asset
-
two options that come to mind, 1) Using a tabbed form 2) Panels, then hide and show the panel you want
Weight loss Target Weight at start [1/Feb/2009] 127kg Weight now [31/Jul/2009] 107.7kg Target weight : 80kg Only 28 TO go hope to be there by March Wish me luck!
-
I think you're looking for the
Form.MdiParent
property. Set it for the child form to be the parent form and the relationship is set.Hi, I did not understand what you are saying.Can you tell in detail. Let me explain the requirement once again. when the form is in maximised mode the control box(min,max and restore buttons) of the form should be displayed adjacent to menu bar In minimised mode the form can be displayed as usual. My code is given below. ChildForm ChildFrm= new ChildForm (); ChildFrm.MdiParent = this; ChildFrm.TopLevel = false; splitContainer1.Panel2.Controls.Add(ChildFrm); ChildFrm.Show(); I've added the Child form to panel2 in split container as I need the form to be displayed in that panel.In minimised mode the form should be movable with in that panel.A very good example of this is Edit plus. Waiting for your reply
-
Hi, I did not understand what you are saying.Can you tell in detail. Let me explain the requirement once again. when the form is in maximised mode the control box(min,max and restore buttons) of the form should be displayed adjacent to menu bar In minimised mode the form can be displayed as usual. My code is given below. ChildForm ChildFrm= new ChildForm (); ChildFrm.MdiParent = this; ChildFrm.TopLevel = false; splitContainer1.Panel2.Controls.Add(ChildFrm); ChildFrm.Show(); I've added the Child form to panel2 in split container as I need the form to be displayed in that panel.In minimised mode the form should be movable with in that panel.A very good example of this is Edit plus. Waiting for your reply
-
Hi Member, The thing is MDI Form is used as Parent Form .and the child forms u can show in it. So u can cascade all the child forms,etc in the main Form . So make a good design before going in to the coding part. Regards,
For1206
Hi, Thanks a lot. The soln you gave is not in detail. can you please explain in detail. What do you mean by cascade regards Member 3057887