I have a toolbar on my parent form. When one of the buttons is pushed, i.e the save button, i want to run the save routine from the child form that currently has the focus. I vb6 i wrote in the toolbar_click event on the parent-form following code:
select case button.key
case = "save"
activeform.save
...
So when a toolbarbutton was pressed the save-routine of the activeform was executed. How can i do this in .NET?
thnx for the help.
select case button.key
case = "save"
activeform.save
...
So when a toolbarbutton was pressed the save-routine of the activeform was executed. How can i do this in .NET?
thnx for the help.