|
Question : How do I find MDI Active Child from toolbar on MDI Parent in VB.NET Winforms Application?
|
|
I am creating a VB.NET Winforms application in VS 2005. I have an MDI Parent form which includes a menu bar and toolbar. All of the other forms within the application are opened up as MDI Child forms. After entering data into the child forms, I would like to be able to click on the Save button on the parent form toolbar, but I can't quite figure out how to find out what the last active child form was. Any suggestions?
|
|
Answer : How do I find MDI Active Child from toolbar on MDI Parent in VB.NET Winforms Application?
|
|
For the same you can call in other way, i havent tried it coding, just trying to write Ctype(Me.ActiveChild, Object).Save
|
|
|
|