Icon View Thread

The following is the text of the current message along with any replies.
Messages 1 to 3 of 3 total
Thread Access violation
Fri, Sep 21 2012 10:25 AMPermanent Link

ewong

Hi,

I just downloaded the Web Builder and created a new project.

Placed a label on the form.

Saved file as 'test.wbs'
Saved project as 'test' (project file)

clicked "Compile project."

Immediately I get an Error:

 [Error] test.wbp (3,26): Duplicate identifier declaration
 Failed (0 hints, 0 warnings, 1 errors)

Project:

project test;

uses WebForms, WebCtrls, test;

begin
  Application.Theme := 'Default';
  Application.Desktop.Height := 768;
  Application.Desktop.AutoWidth := True;
  Application.Desktop.Color := clDesktopBackground;
  Application.ImagePath := 'images';
  Application.ThemePath := 'themes';
  Application.Initialize;
  Form1:=TForm1.Create(Application);
  Application.Run;
end.

So I change the 2nd 'test' to 'xtest'.

Click Compile project again.

Get this:

  "Access violation at address 0060A205 in module 'webbuilder.exe'.
  Read of address 0000001C.

I click OK

Now, no matter what I do, I get the above Access violation error.  I File->Exit.  I get
that message.

File->Save.   Get that AV error.

I can't close WB, so I go into Task Manager and process-kill it.
Mon, Sep 24 2012 12:43 PMPermanent Link

Tim Young [Elevate Software]

Elevate Software, Inc.

Avatar

Email timyoung@elevatesoft.com


<< Immediately I get an Error:

 [Error] test.wbp (3,26): Duplicate identifier declaration
 Failed (0 hints, 0 warnings, 1 errors) >>

This is because you named the unit the same as the project, which you cannot
do.

<< So I change the 2nd 'test' to 'xtest'.

Click Compile project again.

Get this:

"Access violation at address 0060A205 in module 'webbuilder.exe'.
Read of address 0000001C. >>

I'll make sure this is fixed.  Did everything work okay after you restarted
EWB ?

Thanks,

Tim Young
Elevate Software
www.elevatesoft.com


Wed, Sep 26 2012 10:01 AMPermanent Link

ewong

"Tim Young [Elevate Software]" wrote:

<< I'll make sure this is fixed.  Did everything work okay after you restarted
EWB ?

>>

Yes.  Everything worked again when I close WB and run it again.
Image