Jump to content

instance of TUniFrame


rlakinski

Recommended Posts

I created UNIGUI application with a main form and several frames (TUniFrames).

 

Is it possible to reference TUniFrame instance with a function (in a similar manner like referencing mainform) ?

 

----------------------------------------------

function MainForm: TMainForm;

begin

Result := TMainForm(UniMainModule.GetFormInstance(TMainForm));

end;

----------------------------------------------

 

 

I tried the following function for TUniFrame, but error appears in web mode: "Owner form not found"

 

----------------------------------------------

function DailySales: TuDailySalesFrame;

begin

Result := TuDailySalesFrame(UniMainModule.getFormInstance(TuDailySalesFrame));

end;

----------------------------------------------

 

Thanks

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...