Hello TMS Team,
I have a base form in the project that all the others are derived from. This has worked well so far.
But today, when opening the project, I got the (IDE) error message that properties are missing. All TWebForm properties are gone.(CSSLibrary, ElementFont, FormContainer, ...). I opened and checked all files involved in a separate editor. Everything looks fine.
I think I changed the order of the units in the interface the last time I edited it. But here too, all attempts at correction are unsuccessful.
The last editing was about 2-3 days ago and no updates or similar were installed.
What is the cause here? How can I fix the files without having to redo them all, which would probably take days.
Here is my uses section. The ancestor form is "Web.BasisForm"
interface
uses
System.SysUtils, System.Classes, System.Types, JS, Web, {Web.BasisForm,}
WEBLib.Graphics, WEBLib.Controls, WEBLib.Forms, WEBLib.Dialogs, WEBLib.ComCtrls, WEBLib.Lists, WEBLib.ExtCtrls, WEBLib.WebCtrls,
Vcl.Controls, Vcl.StdCtrls,
VCL.TMSFNCTypes, VCL.TMSFNCUtils, VCL.TMSFNCGraphics, VCL.TMSFNCGraphicsTypes, VCL.TMSFNCCustomControl, VCL.TMSFNCCalendar,
WEBLib.StdCtrls, WEBLib.Buttons,
Web.AppTypes,
Web.BasisForm,
web.ClientApp;
And here the first lines in project DPR
uses
Vcl.Forms,
WEBLib.Forms,
Web.BasisForm in '..\..\Client\WEB\Web.BasisForm.pas' {WebBasisForm: TWebForm} {*.html},
TestMain in 'TestMain.pas' {frmTest: TWebForm} {*.html},
Thomas