Icon View Thread

The following is the text of the current message along with any replies.
Messages 1 to 2 of 2 total
Thread EWB 3 Build 7 - Renaming Forms Damages Project File
Sat, Mar 21 2020 7:59 PMPermanent Link

Rob Frye

Changing the Name property of a form doesn't update the project file properly.

For example create a project containing two forms -

   project Project2;
   contains Unit1, Unit2;
   uses WebForms, WebCtrls;
   begin
      Application.CreateForm(TForm1);
      Application.CreateForm(TForm2);
      Application.Run('Form1');
   end.

Changing the Name of the second form from 'Form2' to 'FormTwo' results in the following -

   project Project2;
   contains Unit1, Unit2;
   uses WebForms, WebCtrls;
   begin
      Application.CreateForm(TFormTwo);
      Application.CreateForm(TFormTwo);
      Application.Run('Form1');
   end.

This also results in messed up Project Options - Startup settings, so it may explain the problem Steve Gill has already reported.

Rob
Thu, Mar 26 2020 4:53 PMPermanent Link

Tim Young [Elevate Software]

Elevate Software, Inc.

Avatar

Email timyoung@elevatesoft.com

Rob,

<< Changing the Name property of a form doesn't update the project file properly. >>

This is now fixed for build 8.

Tim Young
Elevate Software
www.elevatesoft.com
Image