kaisersoze Posted January 13, 2004 Posted January 13, 2004 I am working on desktop application. I have a question? I have one MDIParent and I am able to load child calling from mdiparent. but, when I am calling a child from another child i get an error. can some one help me how to call the one mdichild form within another mdichild (on a clickevent of a button) and load in the same mdiparent. Quote Note: I think as a programmer not as a human, so use my answer at your will
kaisersoze Posted January 13, 2004 Author Posted January 13, 2004 I got it vShowReports.MdiParent = Me.MdiParent thanks anyway Quote Note: I think as a programmer not as a human, so use my answer at your will
joe_pool_is Posted January 18, 2004 Posted January 18, 2004 Newbie Question: What is Mdi? How would I use it? A short and simple answer is all I'm looking for. Thanks! Quote Avoid Sears Home Improvement
alapak1 Posted July 29, 2004 Posted July 29, 2004 What about code in C#? "vShowReports.MdiParent = Me.MdiParent" Quote
Wile Posted July 29, 2004 Posted July 29, 2004 Newbie Question: What is Mdi? How would I use it? A short and simple answer is all I'm looking for. Thanks! MDI = Multiple Document Interface That doesnt say much though ;). It is the way Word 6 and 7 used to handle documents. You had one winword 'master' window, that could spawn several child forms. These childforms would stay inside the master window. Other example: MS Access still uses MDI: it got the big 'access' window, with other windows inside for the database, forms, tables, queries, etc. One of the nice tricks of MDI is that the menubar and toolbar of the childwindow is integrated into the mainwindow. If you choose another childwindow (for access you select a query instead of a form) the menu and toolbar will be changed to reflect the change in actions you can take. alapak1: I would add a ';' at the end to make it "vShowReports.MdiParent = Me.MdiParent;" ;) Quote Nothing is as illusive as 'the last bug'.
ost Posted July 29, 2004 Posted July 29, 2004 What about code in C#? "vShowReports.MdiParent = Me.MdiParent" vShowReports.MdiParent = this.MdiParent; Quote
krinpit Posted August 4, 2004 Posted August 4, 2004 What about code in C#? "vShowReports.MdiParent = Me.MdiParent" Check out this link http://authors.aspalliance.com/aldotnet/examples/translate.aspx Quote
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.