Co oznacza ten błąd jak instaluje komponent.
[Fatal Error] TextFade.pas(1): Program or unit 'TextFade.pas' recursively uses itself
Co zrobić?? Help!!
Co oznacza ten błąd jak instaluje komponent.
[Fatal Error] TextFade.pas(1): Program or unit 'TextFade.pas' recursively uses itself
Co zrobić?? Help!!
Z helpu delphi:
Program or unit '<element>' recursively uses itself
An attempt has been made for a unit to use itself.
unit Produce;
interface
uses Produce;
implementation
begin
end.
In the above example, the uses clause specifies the same unit, which causes the compiler to emit an error message.
unit Solve;
interface
implementation
begin
end.
The only solution to this problem is to remove the offending uses clause.--Pawel
Delphi6
Po polskiemu twoj modul wykorzystuje siebie samego. Ale trick polega na tym, ze czasem jak ma sie kilka modoluw, to to da sie obejsc. Mozecie mi wierzyc lub nie, ale napisalem taki program, ze moduly sie zapentlaly, a kompilator tego nie zauwazyl. Sczegol, ze program po uruchomieniu zawieszal system :)--Delphi 4
Skysh The God, Your Slave
Pewnie instalujesz komponent do nowej biblioteki i nazywasz ją tak samo jak komponent.
Nazywaj biblioteki np. 'bib' + nazwa komponentu--Delphi 6
Pozdrowienia,
Imperior
Zarejestruj się i dołącz do największej społeczności programistów w Polsce.
Otrzymaj wsparcie, dziel się wiedzą i rozwijaj swoje umiejętności z najlepszymi.