I think its a very simple problem but I just don´t find the solution.
I would like to access a method (showButton) in an already opened form (mainMenu) by another open form (showCustomers). How do I do the link in the showCustomers-form to the mainMenu-Form (which is a mdiFrame and showCustomers is a child)?
Something like:
Code: Select all
btnClose_click(btn: Button input) updating; //btnClose is part of the showCustomer-form
vars
begin
mainMenu.showButton;
self.unloadForm;
end;
I think I need to specify the already opened mainMenu-form. But how?
Thanks in advance!