Jump to content

Why I cant' install new Component, derived from UniGUI ?


alasoft

Recommended Posts

I made a very simple package (test-case) .. with 

 

 

unit uPrueba;
 
interface
 
uses
  UniButton;
 
type
  TPrueba = class(TUniButton)
 
  end;
 
implementation
 
end.
 
And .. 
 
unit cRegistra;
 
interface
 
procedure Register;
 
implementation
 
uses
  Classes, uPrueba;
 
procedure Register;
begin
  RegisterComponents('AlaSoft Prueba',[TPrueba]);
end;
 
end.
 

When then I tried to 'make' the project (compile it) .. 

 

In ..

 

unit seCSSParser;

 

 
interface
 
uses
  SysUtils, Classes, Dialogs;

 

Doesnt' find Dialogs, so I changed to Vcl.Dialogs and compiled the project.

 

 

Then I tried to 'Install' and ..

 

Cannot load package 'uIndy17'. It contains unit 'uIdResourcesStringsProtocols', wich is also contained in Package 'Prueba'

 

 

Any idea, about what's going on here ??

 

Thanks !!

 

Rober

 

 

 

 

 

 

 

 

 

 

 

Link to comment
Share on other sites

  • 11 months later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...