Hi @ all,
also ich habe ein Problem mit den Units und mit den Uses-Klauseln. Und zwar:
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
implementation
uses unit2;
var
test : TX;
procedure Init();
begin
test.height := 10;
///<---- Das mag er irgendwie nicht !!!
end;
So oder so ungefähr....
Aber der Compiler spucktmir da nur immer irgendwelche Speicherfehler aus...
Warum??
Kann mir da jemand helfen?!
thx
Corelgott