goodmorningsky Posted January 13, 2004 Posted January 13, 2004 I want to show a MDI child form on the top of other opened child forms. frm.Show() doesn't make it show on the top.. How can I do this? Thanks.. Quote Sun Certified Web component Developer, Microsoft Certified Solution Developer .NET, Software Engineer
techmanbd Posted January 13, 2004 Posted January 13, 2004 FRM.SHOWDIALOG Quote Live as if you were to die tomorrow. Learn as if you were to live forever. Gandhi
goodmorningsky Posted January 13, 2004 Author Posted January 13, 2004 Thank you for response.. However it doesn't work since the forms are MDI Child. I want to change Z-Order of MDI child Forms. If I use ShowDialog.. following exception occurs. System.InvalidOperationException: Forms that are not top level forms cannot be displayed as a modal dialog. Remove the form from any parent form before calling showDialog. Quote Sun Certified Web component Developer, Microsoft Certified Solution Developer .NET, Software Engineer
goodmorningsky Posted January 20, 2004 Author Posted January 20, 2004 hi, all.. Does any one know about this? Is it possible anyway? Quote Sun Certified Web component Developer, Microsoft Certified Solution Developer .NET, Software Engineer
Mischamel Posted January 29, 2004 Posted January 29, 2004 Hi, I got the same prob, trying to resolve a concerning problem. Me would be interested as well. Quote Sometimes you´ve got to make a silent Takedown .
Summanus Posted January 29, 2004 Posted January 29, 2004 FormBorderStyle What is the FormBorderStyle property set to? Quote
rustyd Posted June 7, 2004 Posted June 7, 2004 Setting form to be on top without using ShowDialog Form.TopMost = True ' stays on top like the Find window Quote rustyd
threecoins Posted November 2, 2008 Posted November 2, 2008 How can I show MDI child form on the top? After you call the MdichildObjectRef.show() method of the MDIChild, immediately call this method: MDIParentFormName.ActivateMdiChild(MdichildObjectRef) Quote
maheshmohnani Posted February 13, 2009 Posted February 13, 2009 this is not working...i cant see the form on the top.. can soeone help me.. I am using VB.. the instructions are : Dim NewMDIChild As New makebatch.Form2 NewMDIChild.MdiParent = Me NewMDIChild.Show() thanks Quote
Administrators PlausiblyDamp Posted February 13, 2009 Administrators Posted February 13, 2009 On top of what? Is it not displaying the form or is it displaying it beneath other forms? Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.