On Jan 29, 2008 4:08 PM, Warren Postma <[EMAIL PROTECTED]> wrote:
> Using the prebuilt binary installer (latest download on sourceforge) on
> Win32, just added a TButton, and double clicked it, wrote
> a simple for t := 0 to 10 loop and then tried to build and run this
> minimal lazarus app.
>
> Any idea why, creating a minimal app, and trying to run it causes me
> these error message boxes:
>
> Project raised exception class 'EClassNotFound'.
>     [OK]
>
> The file "reader.inc" was not found.
> Do you want to locate it yourself
>    [Yes] [No]
>
>
> Warren
>

Maybe the form code was wrongly auto generated, it should look like this:

TForm1 = class(TForm)
  Button1: TButton;
  private
    { private declarations }
  public
    { public declarations }
  end;

If the Button1 field is missing or in different section (private,
public) it raises this exception.

Tom

_________________________________________________________________
     To unsubscribe: mail [EMAIL PROTECTED] with
                "unsubscribe" as the Subject
   archives at http://www.lazarus.freepascal.org/mailarchives

Reply via email to