If I add a property to a form like this:
type
TForm1 = class(TForm)
private
{ Private declarations }
iTest: integer;
public
{ Public declarations }
published
property Test: integer read iTest write iTest;
end;The property Test does not appear in the Property Inspector. Why is that? Ian.

