Mattias Gaertner wrote:
If you need help, don't hesitate to ask.

Well, seeing that you offered.  :-)

I am trying to install my package and keep getting the error:
procedurelist.pas(59,12) Fatal: Can't find unit ProcedureList

I managed to install the "jumptoimplementation" example. I created a directory \examples\codetools\ProcedureList with all my code in there. I double checked that I have the exact same path setting as the "jumptoimplementation" example as well as the Register methods. I only have one other unit called Main.pas which contains a form.

All I am trying for now, is to add a menu option in the IDE and display my form, when selected.

---------------[ ProcedureList.pas ]------------------------
{ This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install the package.
 }

unit ProcedureList;

interface

uses
  Main, LazarusPackageIntf;

implementation

procedure Register;
begin
  RegisterUnit('Main', @Main.Register);
end;

initialization
  RegisterPackage('ProcedureList', @Register);
end.
-------------------------------------------------------


Regards,
  - Graeme -



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

Reply via email to