Hi,
entweder:
Delphi-Quellcode:
if ActiveMDIChild is TMDIForm then
TMDIForm(ActiveMDIChild).Button1.Caption := 'Test';
oder:
Delphi-Quellcode:
function GetMDIForm: TMDIForm;
begin
Result := TMDIForm(ActiveMDIChild);
end;
// eine Procedure:
GetMDIForm.Button1.Caption := 'Test2';
Wobei ich die zweite Variante besser finde