I have a dll (Created in Delphi) which includes a TGlobalForm inherited from TForm
I want to use the TGlobalForm in my project (Delphi Project) and inherit some forms from TGlobalForm.
Example TAccountsForm = class(TGlobalForm)
the problem is that I don't want to use the GlobalForm pas file in the Uses of the project and I want it to be like when you create a new form (File->New->Other) and you choose the (inheritable Items) under (Delphi Projects) Node so the new created form will show items (Buttons, Edits...) of the inherited form (TGlobalForm)
how to accomplish this?
I'm using Delphi XE3 - VCL Project
Thank you.