G'day All,

Okay... Good news is that I've managed to install FPC, FPC Source, and
Lazarus -- from today's snapshot.

Bad news is -- the same project which Mattias assures me won't Build.
I get the following fatal error:

HelpMultiTabbed.lpr(8,7) Fatal: Can't find unit Interfaces used by
HelpMultiTabbed

I'm thinking that I need to change/add path(s) in the Project /
Compiler Options menu... but what goes into which path(s) boxes?!?

-----------
program HelpMultiTabbed;

{$mode objfpc}{$H+}

uses
  {$IFDEF UNIX}{$IFDEF UseCThreads}
  cthreads,
  {$ENDIF}{$ENDIF}
  Interfaces, // this includes the LCL widgetset

// ^^^^^^^^^^ --- that's the line giving the fatal error

  Forms
  { you can add units after this },
  mainunit, frameunit;

begin
  Application.Title:='HelpDialog';
  Application.Initialize;
  Application.CreateForm(TForm1, Form1);
  Application.Run;
end.
-----------

Best Regards & Happy Debugging,
PEW

-- 
Fond Regards,
Peter Eric (aka 'pew') WILLIAMS
from Hobart, Tasmania, Australia -- phone (03) 6236-9675

My free website is: http://pewtas.googlepages.com (or) http://tinyurl.com/yuyejs

(please visit my free website and let me know what you think about it.)
_______________________________________________
Lazarus mailing list
[email protected]
http://www.lazarus.freepascal.org/mailman/listinfo/lazarus

Reply via email to