Könnte es sich vielleicht um einen Kreuzverweis handeln?
Dann Probier mal folgendes:
Delphi-Quellcode:
unit Unit1;
interface
uses unit2;
type Tx =
class
private
MyHeight : Integer;
public
property Height : Integer
read MyHeight
write MyHeight;
end;
implementation
code....
Delphi-Quellcode:
unit unit2;
interface
uses unit1;
implementation
var
test : TX;
procedure Init();
begin
test.height := 10;
///<---- Das mag er irgendwie nicht !!!
end;
Dass sollte das Problem beheben // hoffentlich