Icon View Thread

The following is the text of the current message along with any replies.
Messages 1 to 3 of 3 total
Thread Deleted component, now have error message on Run
Fri, Oct 17 2014 4:14 PMPermanent Link

TD

Advanced Data Systems, Inc.

I placed a TServerRequestQueue on a form in my project.  It visually disappeared soon afterward so that I cannot see it on the form but it is listed in the Object Inspector.  In the "type" section of the form (no longer wanted it on this form), I deleted the reference to it.  Now when I run the project I get this error:

[Error] Unit1.wbs (0,0): The referenced variable, parameter, or function ServerRequestQueue1 does not exist

I have looked everywhere but to no avail.  How can I fix this?

Thanks,
TD
Fri, Oct 17 2014 5:37 PMPermanent Link

Uli Becker

> [Error] Unit1.wbs (0,0): The referenced variable, parameter, or function ServerRequestQueue1 does not exist

Open the *.wbf file with an editor and delete the object, e.g.

object Form1: TEWBDesignForm
  Left = 0
  Top = 0
  Width = 668
  Height = 534
  Caption = 'Form1'
  FormEncoding = 'multipart/form-data'
  PixelsPerInch = 96
  TextHeight = 15
  InitialLeft = 0
  InitialTop = 0
  InitialWidth = 668
  InitialHeight = 534

<<<<<
  object ServerRequest1: TEWBDesignServerRequest
    Left = 216
    Top = 96
    Width = 101
    Height = 53
    Caption = 'ServerRequest1'
    InitialLeft = 216
    InitialTop = 96
    InitialWidth = 101
    InitialHeight = 53
  end
>>>>

end

Uli

Sun, Oct 19 2014 7:23 PMPermanent Link

TD

Advanced Data Systems, Inc.

THANK YOU !

TD
Image