I have an MDI with Toolbar. Toolbar has standard functions Like New, Open, Delete.

All these operations need to be performed on the child windows of MDI. I can get the Child windows using me.ActiveMdiChild property of MDI but how do I execute a standard method say 'ToolBarHandler' which will be in all child forms and this function will implement the MDI toolbar functionality in all forms respectively. So how do I call this function for active child window from MDI ??? Should I use Delegates, if yes, please post some example.