Hi Guys
I have the following statement
var
frm_Client : Tfrm_Client;
begin
frm_Client := Tfrm_Client.Create(Self);
try
frm_Client.ShowModal;
frm_Client.Act_New.Execute;
finally
frm_Client.Release;
end;
end;
The act_new.execute cannor run as it only executes after the form is closed.
What would be the correct way to achieve the act_new.execute in this code?
Many thanks
Regards
Dino Lolli
[Non-text portions of this message have been removed]

