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...

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...