Hi,
I have an MDI Form. In MDI Form i placed a panel with dock property. I opened my child forms by using
childform.Toplevel = false;
childformparent = this;
childform.show();
childform.bringtofront();
This is working fine. I have a menu item like logoff in my menu,in that if i clicked on logoff menu is closing but the forms are in visible state. They are not closing, Because my childform parent is not mdi. Ho w can i close my chidforms without using Application.exit().